diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-03-27 13:42:34 +0000 |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-03-27 13:42:34 +0000 |
commit | b35ecf47755b23be95657df7d80fe5fcfe261671 (patch) | |
tree | abcd38d26192dcb64589e4e079fc2534e369cd46 /Lib/test/test_unittest.py | |
parent | ff889396a845a557aa440a6960fcc5d8e6d9033a (diff) | |
download | cpython-git-b35ecf47755b23be95657df7d80fe5fcfe261671.tar.gz |
Rename the unittest test_suite function to not clash with a test module name (unittest.test.test_suite is now unambiguous).
Diffstat (limited to 'Lib/test/test_unittest.py')
-rw-r--r-- | Lib/test/test_unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_unittest.py b/Lib/test/test_unittest.py index 1e2b323a5f..86a998b6f4 100644 --- a/Lib/test/test_unittest.py +++ b/Lib/test/test_unittest.py @@ -4,7 +4,7 @@ from test import test_support def test_main(): - test_support.run_unittest(unittest.test.test_suite()) + test_support.run_unittest(unittest.test.suite()) test_support.reap_children() |