From: Brett Cannon Date: Fri, 27 Mar 2015 18:21:26 +0000 (-0400) Subject: Remove a dead test for a never-launched API X-Git-Tag: v3.5.0a3~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac9591a44a504af25bb85aaa09ba46393d8bdce9;p=python Remove a dead test for a never-launched API --- diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index 2493af7dea..5d35d141b4 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -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'))