diff options
Diffstat (limited to 'Lib/test/test_importlib/test_api.py')
-rw-r--r-- | Lib/test/test_importlib/test_api.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_importlib/test_api.py b/Lib/test/test_importlib/test_api.py index 792c82d..2a6142a 100644 --- a/Lib/test/test_importlib/test_api.py +++ b/Lib/test/test_importlib/test_api.py @@ -288,8 +288,7 @@ class FindSpecTests: self.assertNotIn(name, sorted(sys.modules)) # Ensure successive calls behave the same. spec_again = self.init.find_spec(fullname, [pkg_dir]) - # XXX Once #19927 is resolved, uncomment this line. - #self.assertEqual(spec_again, spec) + self.assertEqual(spec_again, spec) def test_find_submodule_missing_path(self): name = 'spam' |