Kaydet (Commit) 126f2b76 authored tarafından Fred Drake's avatar Fred Drake

Avoid creating one of the TestSuite objects.

üst 4ec68248
......@@ -187,8 +187,7 @@ class TimeoutTestCase(unittest.TestCase):
def test_main():
test_support.requires('network')
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(CreationTestCase))
suite = unittest.makeSuite(CreationTestCase)
suite.addTest(unittest.makeSuite(TimeoutTestCase))
test_support.run_suite(suite)
......
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