From: Thomas Wouters Date: Sun, 23 Apr 2006 00:19:58 +0000 (+0000) Subject: Fix test_main function so test_bytes can be run by regrtest.py. X-Git-Tag: v3.0a1~1423 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f6f27de4d9f7cb260e243cf517cec629e54e985;p=python Fix test_main function so test_bytes can be run by regrtest.py. --- diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py index ce224c2c94..fc911ac974 100644 --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py @@ -101,7 +101,7 @@ class BytesTest(unittest.TestCase): def test_main(): - test.test_support.run_unittest(XrangeTest) + test.test_support.run_unittest(BytesTest) if __name__ == "__main__":