diff options
Diffstat (limited to 'Lib/test/test_importhooks.py')
-rw-r--r-- | Lib/test/test_importhooks.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_importhooks.py b/Lib/test/test_importhooks.py index 070b578..4191a17 100644 --- a/Lib/test/test_importhooks.py +++ b/Lib/test/test_importhooks.py @@ -199,6 +199,8 @@ class ImportHooksTestCase(ImportHooksBaseTestCase): m = __import__(mname, globals(), locals(), ["__dummy__"]) m.__loader__ # to make sure we actually handled the import +def test_main(): + test_support.run_unittest(ImportHooksTestCase) if __name__ == "__main__": - test_support.run_unittest(ImportHooksTestCase) + test_main() |