From cc5f8e0bb5603cfee160795b512528ddd7dbde96 Mon Sep 17 00:00:00 2001 From: Thomas Bittar Date: Mon, 16 Dec 2024 11:09:00 +0100 Subject: [PATCH] Fix test --- tests/end_to_end/cucumber/features/steps/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/end_to_end/cucumber/features/steps/steps.py b/tests/end_to_end/cucumber/features/steps/steps.py index c54f9d671..13180d379 100644 --- a/tests/end_to_end/cucumber/features/steps/steps.py +++ b/tests/end_to_end/cucumber/features/steps/steps.py @@ -239,7 +239,7 @@ def get_results_file_path_from_logs(logs: bytes) -> str: @then('Simulator has been launched with solver "{string}"') def check_simulator_solver(context, string): - string_to_find = f"ortools solver {string} used for problem resolution" + string_to_find = f"solver {string} used for problem resolution" assert(find_in_simulator_log(context.tmp_study / "output", string_to_find)) @then('Benders has been launched with solver "{string}"')