From 23eae8646cce1ffd1f20546b38036e17c6d159d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Sun, 5 Sep 2010 18:43:07 +0000 Subject: Make naming consistent --- Lib/test/test_set.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index c9d0466..cc194b5 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) -- cgit v0.12