Skip to content

Commit 6144fb5

Browse files
committed
Fix wart in test method
1 parent 813736b commit 6144fb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_verify_build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1863,12 +1863,12 @@ def test_import_ssl_module(pyexec):
18631863

18641864
@pytest.mark.skip_unless_on_linux
18651865
@pytest.mark.parametrize("pip_version", ["25.2", "25.3"])
1866-
def test_install_setuptools_25_2_to_25_3(pipexec, build, minor_version):
1866+
def test_install_setuptools_25_2_to_25_3(pipexec, build, minor_version, pip_version):
18671867
"""
18681868
Validate we handle the changes to pip._internal.req.InstallRequirement.install signature.
18691869
"""
18701870
subprocess.run(
1871-
[str(pipexec), "install", "--upgrade", "pip==25.2"],
1871+
[str(pipexec), "install", "--upgrade", f"pip=={pip_version}"],
18721872
check=True,
18731873
)
18741874
subprocess.run(

0 commit comments

Comments
 (0)