diff options
Diffstat (limited to 'Lib/test/test_bool.py')
-rw-r--r-- | Lib/test/test_bool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py index aa05944..4fbb0b1 100644 --- a/Lib/test/test_bool.py +++ b/Lib/test/test_bool.py @@ -321,7 +321,7 @@ class BoolTest(unittest.TestCase): self.assertEqual(cPickle.dumps(False, True), "I00\n.") def test_main(): - test_support.run_classtests(BoolTest) + test_support.run_unittest(BoolTest) if __name__ == "__main__": test_main() |