From b61c6f783cd4d1c0a6babe5eaaeefdbd829c3557 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Thu, 24 Oct 2024 20:44:55 -0400 Subject: [PATCH] Update test_run.py --- tests/test_run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_run.py b/tests/test_run.py index e8c92a74..5d24a0f9 100644 --- a/tests/test_run.py +++ b/tests/test_run.py @@ -50,7 +50,7 @@ def test_any_complete(self): task1 = Task("Task 1") task2 = Task("Task 2") - with instructions("complete task 2"): + with instructions("complete only task 2"): run_tasks([task1, task2], run_until=AnyComplete()) assert task2.is_complete() @@ -60,7 +60,7 @@ def test_any_failed(self): task1 = Task("Task 1") task2 = Task("Task 2") - with instructions("fail task 2"): + with instructions("fail only task 2"): run_tasks([task1, task2], run_until=AnyFailed(), raise_on_failure=False) assert task2.is_failed()