Skip to content

Commit 4ebe490

Browse files
committed
Remove test_search_dist_dirs as it was never used. Ref #111.
1 parent c10a5aa commit 4ebe490

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/test_integration.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
from . import fixtures
1515
from importlib_metadata import (
16-
MetadataPathFinder,
1716
_compat,
1817
version,
1918
)
@@ -52,14 +51,3 @@ def __getattribute__(self, name):
5251

5352
self.fixtures.enter_context(fixtures.install_finder(ModuleFreeFinder()))
5453
_compat.disable_stdlib_finder()
55-
56-
57-
class DistSearch(unittest.TestCase):
58-
def test_search_dist_dirs(self):
59-
"""
60-
Pip needs the _search_paths interface to locate
61-
distribution metadata dirs. Protect it for PyPA
62-
use-cases (only). Ref python/importlib_metadata#111.
63-
"""
64-
res = MetadataPathFinder._search_paths('any-name', [])
65-
assert list(res) == []

0 commit comments

Comments
 (0)