From 4101dee282b782cb937bd3223ca6264bb92a1427 Mon Sep 17 00:00:00 2001 From: tazlin Date: Sun, 3 Mar 2024 11:07:34 -0500 Subject: [PATCH] ci: fix string in horde dep update test --- tests/test_horde_dep_updates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_horde_dep_updates.py b/tests/test_horde_dep_updates.py index 3a16ed90..152b450d 100644 --- a/tests/test_horde_dep_updates.py +++ b/tests/test_horde_dep_updates.py @@ -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: