Skip to content

Commit d31bf1c

Browse files
committed
Fix assertion message in reinstall test
Updated error message assertion for reinstall test.
1 parent a39a279 commit d31bf1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_reinstall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def test_reinstall_pinned_package(pipx_temp_env, capsys):
7575
assert not run_pipx_cli(["pin", "black"])
7676
assert run_pipx_cli(["reinstall", "black"])
7777
captured = capsys.readouterr()
78-
assert "Pass --unpin to unpin" in captured.err
78+
assert "--unpin to unpin" in captured.err
7979

8080
assert not run_pipx_cli(["reinstall", "--unpin", "black"])
8181
captured = capsys.readouterr()

0 commit comments

Comments
 (0)