Commit 23eae864 authored by Éric Araujo's avatar Éric Araujo

Make naming consistent

parent 2decf22b
import unittest mport unittest
from test import support from test import support
import gc import gc
import weakref import weakref
...@@ -1677,7 +1677,7 @@ class bad_dict_clear: ...@@ -1677,7 +1677,7 @@ class bad_dict_clear:
def __hash__(self): def __hash__(self):
return 0 return 0
class Test_Weird_Bugs(unittest.TestCase): class TestWeirdBugs(unittest.TestCase):
def test_8420_set_merge(self): def test_8420_set_merge(self):
# This used to segfault # This used to segfault
global be_bad, set2, dict2 global be_bad, set2, dict2
...@@ -1837,7 +1837,7 @@ def test_main(verbose=None): ...@@ -1837,7 +1837,7 @@ def test_main(verbose=None):
TestIdentities, TestIdentities,
TestVariousIteratorArgs, TestVariousIteratorArgs,
TestGraphs, TestGraphs,
Test_Weird_Bugs, TestWeirdBugs,
) )
support.run_unittest(*test_classes) support.run_unittest(*test_classes)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment