diff options
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r-- | Lib/test/test_set.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index c9d04668a8..cc194b57aa 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -1,4 +1,4 @@ -import unittest +mport unittest from test import support import gc import weakref @@ -1677,7 +1677,7 @@ class bad_dict_clear: def __hash__(self): return 0 -class Test_Weird_Bugs(unittest.TestCase): +class TestWeirdBugs(unittest.TestCase): def test_8420_set_merge(self): # This used to segfault global be_bad, set2, dict2 @@ -1837,7 +1837,7 @@ def test_main(verbose=None): TestIdentities, TestVariousIteratorArgs, TestGraphs, - Test_Weird_Bugs, + TestWeirdBugs, ) support.run_unittest(*test_classes) |