1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Normalise name to match newer flit behaviour

This commit is contained in:
Pradyun Gedam 2022-02-25 12:03:37 +00:00
parent d35bedc5cb
commit 201135fd2e

View file

@ -62,7 +62,7 @@ def test_download_from_pypi(
def test_build_wheel_with_deps(data: TestData, script: PipTestEnvironment) -> None:
result = pip(script, "wheel", data.packages / "requiresPaste")
created = [basename(f) for f in result.files_created]
assert fnmatch.filter(created, "requiresPaste-3.1.4-*.whl")
assert fnmatch.filter(created, "requirespaste-3.1.4-*.whl")
assert fnmatch.filter(created, "Paste-3.4.2-*.whl")
assert fnmatch.filter(created, "six-*.whl")