summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_threaded_import.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_importlib/test_threaded_import.py')
-rw-r--r--Lib/test/test_importlib/test_threaded_import.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_importlib/test_threaded_import.py b/Lib/test/test_importlib/test_threaded_import.py
index 8607f36..d1f64c7 100644
--- a/Lib/test/test_importlib/test_threaded_import.py
+++ b/Lib/test/test_importlib/test_threaded_import.py
@@ -178,11 +178,11 @@ class ThreadedImportTests(unittest.TestCase):
# In case this test is run again, make sure the helper module
# gets loaded from scratch again.
try:
- del sys.modules['test.threaded_import_hangers']
+ del sys.modules['test.test_importlib.threaded_import_hangers']
except KeyError:
pass
- import test.threaded_import_hangers
- self.assertFalse(test.threaded_import_hangers.errors)
+ import test.test_importlib.threaded_import_hangers
+ self.assertFalse(test.test_importlib.threaded_import_hangers.errors)
def test_circular_imports(self):
# The goal of this test is to exercise implementations of the import