summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
index 35a4baf..1091158 100644
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -795,7 +795,7 @@ class ImportTracebackTests(unittest.TestCase):
tb = tb.tb_next
self.assertEqual(len(deduped_files), len(files), deduped_files)
for fn, pat in zip(deduped_files, files):
- self.assertRegex(fn, pat)
+ self.assertIn(pat, fn)
def test_nonexistent_module(self):
try: