summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importhooks.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_importhooks.py')
-rw-r--r--Lib/test/test_importhooks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_importhooks.py b/Lib/test/test_importhooks.py
index 3108bd6..eaf213d 100644
--- a/Lib/test/test_importhooks.py
+++ b/Lib/test/test_importhooks.py
@@ -2,7 +2,7 @@ import sys
import imp
import os
import unittest
-from test import test_support
+from test import support
test_src = """\
@@ -265,7 +265,7 @@ class ImportHooksTestCase(ImportHooksBaseTestCase):
pass
def test_main():
- test_support.run_unittest(ImportHooksTestCase)
+ support.run_unittest(ImportHooksTestCase)
if __name__ == "__main__":
test_main()