[Python-3000-checkins] r45653 - python/branches/p3yk/Lib/test/test_bytes.py

thomas.wouters python-3000-checkins at python.org
Sun Apr 23 02:19:59 CEST 2006


Author: thomas.wouters
Date: Sun Apr 23 02:19:58 2006
New Revision: 45653

Modified:
   python/branches/p3yk/Lib/test/test_bytes.py
Log:

Fix test_main function so test_bytes can be run by regrtest.py.



Modified: python/branches/p3yk/Lib/test/test_bytes.py
==============================================================================
--- python/branches/p3yk/Lib/test/test_bytes.py	(original)
+++ python/branches/p3yk/Lib/test/test_bytes.py	Sun Apr 23 02:19:58 2006
@@ -101,7 +101,7 @@
 
 
 def test_main():
-    test.test_support.run_unittest(XrangeTest)
+    test.test_support.run_unittest(BytesTest)
 
 
 if __name__ == "__main__":


More information about the Python-3000-checkins mailing list