From 201135fd2e093dbdbf493446e108a84e1bff9389 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Fri, 25 Feb 2022 12:03:37 +0000 Subject: [PATCH] Normalise name to match newer flit behaviour --- tests/functional/test_fast_deps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/test_fast_deps.py b/tests/functional/test_fast_deps.py index b5dd1f286..87c070c78 100644 --- a/tests/functional/test_fast_deps.py +++ b/tests/functional/test_fast_deps.py @@ -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")