Moar tests getting updated

This commit is contained in:
Pradyun Gedam 2020-07-27 19:44:28 +05:30
parent b9ff93f7ba
commit 3962f9d2b8
No known key found for this signature in database
GPG Key ID: FF99710C4332258E
1 changed files with 1 additions and 1 deletions

View File

@ -1697,7 +1697,7 @@ def test_install_conflict_results_in_warning(script, data):
result2 = script.pip(
'install', '--no-index', pkgB_path, allow_stderr_error=True,
)
assert "pkga 1.0 has requirement pkgb==1.0" in result2.stderr, str(result2)
assert "pkga 1.0 requires pkgb==1.0" in result2.stderr, str(result2)
assert "Successfully installed pkgB-2.0" in result2.stdout, str(result2)