]> granicus.if.org Git - python/commitdiff
Remove a dead test for a never-launched API
authorBrett Cannon <brett@python.org>
Fri, 27 Mar 2015 18:21:26 +0000 (14:21 -0400)
committerBrett Cannon <brett@python.org>
Fri, 27 Mar 2015 18:21:26 +0000 (14:21 -0400)
Lib/test/test_importlib/test_util.py

index 2493af7dea3fd4205c42e637b1f984351e70cfe6..5d35d141b4dbb503c6ee11bd339e03ad9ee70a30 100644 (file)
@@ -469,15 +469,6 @@ class FindSpecTests:
                 self.assertEqual((name, None, None),
                                  self.util.find_spec(name))
 
-#    def test_success_path(self):
-#        # Searching on a path should work.
-#        name = 'some_mod'
-#        path = 'path to some place'
-#        with util.uncache(name):
-#            with util.import_state(meta_path=[self.FakeMetaFinder]):
-#                self.assertEqual((name, path, None),
-#                                 self.util.find_spec(name, path))
-
     def test_nothing(self):
         # None is returned upon failure to find a loader.
         self.assertIsNone(self.util.find_spec('nevergoingtofindthismodule'))