mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
comply with the evilJavaNamingScheme for attribute names
It seems my love of PEP 8 overrode the need for consistentcy
This commit is contained in:
parent
692428e77f
commit
cb2b0e45d4
3 changed files with 11 additions and 11 deletions
|
@ -2362,7 +2362,7 @@ class Test_TestSkipping(TestCase):
|
|||
test.run(result)
|
||||
self.assertEqual(events,
|
||||
['startTest', 'addExpectedFailure', 'stopTest'])
|
||||
self.assertEqual(result.expected_failures[0][0], test)
|
||||
self.assertEqual(result.expectedFailures[0][0], test)
|
||||
self.assertTrue(result.wasSuccessful())
|
||||
|
||||
def test_unexpected_success(self):
|
||||
|
@ -2377,7 +2377,7 @@ class Test_TestSkipping(TestCase):
|
|||
self.assertEqual(events,
|
||||
['startTest', 'addUnexpectedSuccess', 'stopTest'])
|
||||
self.assertFalse(result.failures)
|
||||
self.assertEqual(result.unexpected_successes, [test])
|
||||
self.assertEqual(result.unexpectedSuccesses, [test])
|
||||
self.assertTrue(result.wasSuccessful())
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue