We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e9fa7 commit d9546f5Copy full SHA for d9546f5
tests/functional/test_install.py
@@ -2253,14 +2253,14 @@ def test_yanked_version_missing_from_availble_versions_error_message(
2253
"""
2254
result = script.pip(
2255
"install",
2256
- "simple==",
+ "simple==0.1",
2257
"--index-url",
2258
data.index_url("yanked"),
2259
expect_error=True,
2260
)
2261
# the yanked version (3.0) is filtered out from the output:
2262
expected_warning = (
2263
- "Could not find a version that satisfies the requirement simple== "
+ "Could not find a version that satisfies the requirement simple==0.1 "
2264
"(from versions: 1.0, 2.0)"
2265
2266
assert expected_warning in result.stderr, str(result)
0 commit comments