Skip to content

Commit

Permalink
More permissive output check
Browse files Browse the repository at this point in the history
  • Loading branch information
uranusjr committed Jan 27, 2021
1 parent 2e70ec0 commit 7d43ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/test_new_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ def test_new_resolver_no_fetch_no_satisfying(script):
"--find-links", script.scratch_path,
"myuberpkg",
)
assert "Processing ./myuberpkg-1-" in result.stdout, str(result)
assert "Processing " in result.stdout, str(result)

# Try to upgrade the package. This should NOT emit the "Processing"
# message because the currently installed version is latest.
Expand All @@ -1277,4 +1277,4 @@ def test_new_resolver_no_fetch_no_satisfying(script):
"--upgrade",
"myuberpkg",
)
assert "Processing ./myuberpkg-1-" not in result.stdout, str(result)
assert "Processing " not in result.stdout, str(result)

0 comments on commit 7d43ec5

Please sign in to comment.