diff options
Diffstat (limited to 'Lib/test/test_zipimport.py')
-rw-r--r-- | Lib/test/test_zipimport.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_zipimport.py b/Lib/test/test_zipimport.py index 894b132..04682db 100644 --- a/Lib/test/test_zipimport.py +++ b/Lib/test/test_zipimport.py @@ -187,8 +187,10 @@ class CompressedZipImportTestCase(UncompressedZipImportTestCase): def test_main(): - test_support.run_unittest(UncompressedZipImportTestCase) - test_support.run_unittest(CompressedZipImportTestCase) + test_support.run_unittest( + UncompressedZipImportTestCase, + CompressedZipImportTestCase + ) if __name__ == "__main__": test_main() |