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 ea391b2 commit 8c118c8Copy full SHA for 8c118c8
tests/functional/test_new_resolver.py
@@ -186,7 +186,9 @@ def test_new_resolver_no_dist_message(script):
186
187
assert "Could not find a version that satisfies the requirement B" \
188
in result.stderr, str(result)
189
- assert "No matching distribution found for B" in result.stderr, str(result)
+ # TODO: This reports the canonical name of the project. But the current
190
+ # resolver reports the originally specified name (i.e. uppercase B)
191
+ assert "No matching distribution found for b" in result.stderr, str(result)
192
193
194
def test_new_resolver_installs_editable(script):
0 commit comments