summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_importlib/test_api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_importlib/test_api.py b/Lib/test/test_importlib/test_api.py
index 1fa905c..5126634 100644
--- a/Lib/test/test_importlib/test_api.py
+++ b/Lib/test/test_importlib/test_api.py
@@ -279,8 +279,8 @@ class ReloadTests:
del ns['__initializing__']
loader = ns.pop('__loader__')
path = ns.pop('__path__')
- self.assertEqual(list(path),
- [os.path.dirname(bad_path)] * 2)
+ self.assertEqual(set(path),
+ set([os.path.dirname(bad_path)]))
with self.assertRaises(AttributeError):
# a NamespaceLoader
loader.path