summaryrefslogtreecommitdiff
path: root/Lib/importlib/test/import_/test_packages.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/importlib/test/import_/test_packages.py')
-rw-r--r--Lib/importlib/test/import_/test_packages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/test/import_/test_packages.py b/Lib/importlib/test/import_/test_packages.py
index 5912c1f191..b41c36f5b5 100644
--- a/Lib/importlib/test/import_/test_packages.py
+++ b/Lib/importlib/test/import_/test_packages.py
@@ -13,7 +13,7 @@ class ParentModuleTests(unittest.TestCase):
with util.mock_modules('pkg.__init__', 'pkg.module') as mock:
with util.import_state(meta_path=[mock]):
module = import_util.import_('pkg.module')
- self.assert_('pkg' in sys.modules)
+ self.assertTrue('pkg' in sys.modules)
def test_bad_parent(self):
with util.mock_modules('pkg.module') as mock: