Skip to content

Commit

Permalink
Fix syntax error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
yamaton authored and mariusvniekerk committed Aug 22, 2022
1 parent d8cb705 commit 18c0e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_condax.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_pipx_install_roundtrip(conf):
from condax.core import install_package, remove_package

start = which("jq")
assert (start is None) or (not start.startswith[conf["link"]])
assert (start is None) or (not start.startswith(conf["link"]))
install_package("jq")
post_install = which("jq")
assert post_install.startswith(conf["link"])
Expand Down

0 comments on commit 18c0e83

Please sign in to comment.