aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/importlib/test/extension/test_path_hook.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/importlib/test/extension/test_path_hook.py')
-rw-r--r--Lib/importlib/test/extension/test_path_hook.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/test/extension/test_path_hook.py b/Lib/importlib/test/extension/test_path_hook.py
index 85329568a8f..bf2f411484d 100644
--- a/Lib/importlib/test/extension/test_path_hook.py
+++ b/Lib/importlib/test/extension/test_path_hook.py
@@ -19,7 +19,7 @@ class PathHookTests(unittest.TestCase):
def test_success(self):
# Path hook should handle a directory where a known extension module
# exists.
- self.assert_(hasattr(self.hook(util.PATH), 'find_module'))
+ self.assertTrue(hasattr(self.hook(util.PATH), 'find_module'))
def test_main():