diff --git a/tests/goth/test_run_blender.py b/tests/goth/test_run_blender.py index a5167ab93..24c005fca 100644 --- a/tests/goth/test_run_blender.py +++ b/tests/goth/test_run_blender.py @@ -51,7 +51,7 @@ async def assert_all_tasks_started(output_lines: EventStream[str]): async def assert_all_tasks_computed(output_lines: EventStream[str]): """Assert that for every task a line with `Task computed by provider` will appear.""" - await assert_all_tasks_processed("computed by provider", output_lines) + await assert_all_tasks_processed("finished by provider", output_lines) async def assert_all_invoices_accepted(output_lines: EventStream[str]): diff --git a/tests/goth/test_run_yacat.py b/tests/goth/test_run_yacat.py index d5f758758..d92c71265 100644 --- a/tests/goth/test_run_yacat.py +++ b/tests/goth/test_run_yacat.py @@ -51,7 +51,7 @@ async def assert_all_tasks_started(output_lines: EventStream[str]): async def assert_all_tasks_computed(output_lines: EventStream[str]): """Assert that for every task a line with `Task computed by provider` will appear.""" - await assert_all_tasks_processed("computed by provider", output_lines) + await assert_all_tasks_processed("finished by provider", output_lines) async def assert_all_invoices_accepted(output_lines: EventStream[str]):