diff options
author | Brett Cannon <brett@python.org> | 2013-06-13 01:25:59 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-13 01:25:59 (GMT) |
commit | 3e9a9ae09d6fc9169b01cba3efd1ae03ab40b237 (patch) | |
tree | 5ef61b4c8c1b5bfaaafb1e1e0cd03afe7971caf7 /Lib/test/test_asynchat.py | |
parent | e382b5868a4daca614589270b6b3fe5c50059986 (diff) | |
download | cpython-3e9a9ae09d6fc9169b01cba3efd1ae03ab40b237.zip cpython-3e9a9ae09d6fc9169b01cba3efd1ae03ab40b237.tar.gz cpython-3e9a9ae09d6fc9169b01cba3efd1ae03ab40b237.tar.bz2 |
Update various test modules to use unittest.main() for test discovery
instead of manually listing tests for test.support.run_unittest().
Diffstat (limited to 'Lib/test/test_asynchat.py')
-rw-r--r-- | Lib/test/test_asynchat.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/test/test_asynchat.py b/Lib/test/test_asynchat.py index b616f30..f93a52d 100644 --- a/Lib/test/test_asynchat.py +++ b/Lib/test/test_asynchat.py @@ -283,9 +283,5 @@ class TestFifo(unittest.TestCase): self.assertEqual(f.pop(), (0, None)) -def test_main(verbose=None): - support.run_unittest(TestAsynchat, TestAsynchat_WithPoll, - TestHelperFunctions, TestFifo) - if __name__ == "__main__": - test_main(verbose=True) + unittest.main() |