summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2006-04-23 00:19:58 (GMT)
committerThomas Wouters <thomas@python.org>2006-04-23 00:19:58 (GMT)
commit5f6f27de4d9f7cb260e243cf517cec629e54e985 (patch)
tree749403be4394ca70864f3e04257ff30c727d032c /Lib
parent4dfe8a1131b551687659b9339eaee163a24f82f1 (diff)
downloadcpython-5f6f27de4d9f7cb260e243cf517cec629e54e985.zip
cpython-5f6f27de4d9f7cb260e243cf517cec629e54e985.tar.gz
cpython-5f6f27de4d9f7cb260e243cf517cec629e54e985.tar.bz2
Fix test_main function so test_bytes can be run by regrtest.py.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_bytes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index ce224c2..fc911ac 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__":