Skip to content

Commit

Permalink
ci: fix string in horde dep update test
Browse files Browse the repository at this point in the history
  • Loading branch information
tazlin committed Mar 3, 2024
1 parent 5cb6b35 commit 4101dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_horde_dep_updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_horde_bridge_updating(horde_dependency_versions: list[tuple[str, str]])

found_line = False
for line in script_lines:
if line.startswith("call runtime python -s -m pip install"):
if "python -s -m pip install" in line:
found_line = True
assert "-U" in line, "No -U flag found in pip install command"
for dep, version in horde_dependency_versions:
Expand Down

0 comments on commit 4101dee

Please sign in to comment.