From 18c0e83c37afd495156ae893c200616a8751dcbe Mon Sep 17 00:00:00 2001 From: Yamato Matsuoka Date: Mon, 11 Jul 2022 14:07:45 -0400 Subject: [PATCH] Fix syntax error in test --- tests/test_condax.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_condax.py b/tests/test_condax.py index 7077677..e1561fb 100644 --- a/tests/test_condax.py +++ b/tests/test_condax.py @@ -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"])