Kaydet (Commit) cfd4a8b6 authored tarafından Tim Peters's avatar Tim Peters

Made this a little more compatible w/ the sandbox version, which is

still needed to test the Python implementatino.
üst e820cb60
...@@ -2086,7 +2086,7 @@ class TestDateTimeTZ(TestDateTime): ...@@ -2086,7 +2086,7 @@ class TestDateTimeTZ(TestDateTime):
self.assertEqual(str(d), datestr + ' ' + tailstr) self.assertEqual(str(d), datestr + ' ' + tailstr)
def suite(): def test_suite():
allsuites = [unittest.makeSuite(klass, 'test') allsuites = [unittest.makeSuite(klass, 'test')
for klass in (TestModule, for klass in (TestModule,
TestTZInfo, TestTZInfo,
...@@ -2105,7 +2105,7 @@ def test_main(): ...@@ -2105,7 +2105,7 @@ def test_main():
import gc import gc
import sys import sys
thesuite = suite() thesuite = test_suite()
lastrc = None lastrc = None
while True: while True:
test_support.run_suite(thesuite) test_support.run_suite(thesuite)
......
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