commit | ab364c4366d6283f9323ede7e1db970adf77f88c | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Fri Mar 28 07:36:31 2008 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Fri Mar 28 07:36:31 2008 +0000 |
tree | 4d6054615c880ff813c8ba297bfadb266b4bd2e4 | |
parent | 70cea58c84165460683b12e60331b4a90550e313 [diff] [blame] |
Name the main method correctly so the test is run
diff --git a/Lib/test/test_sax.py b/Lib/test/test_sax.py index bfdd713..c582985 100644 --- a/Lib/test/test_sax.py +++ b/Lib/test/test_sax.py
@@ -684,7 +684,7 @@ self.assertRaises(SAXParseException, parser.parse, sio) -def unittest_main(): +def test_main(): run_unittest(MakeParserTest, SaxutilsTest, XmlgenTest, @@ -693,4 +693,4 @@ XmlReaderTest) if __name__ == "__main__": - unittest_main() + test_main()