From 1cc4986f96c87f02aaeeceabea93336bc3e7f342 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:44:52 -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 c3a2fdd0..e8c92a74 100644 --- a/tests/test_run.py +++ b/tests/test_run.py @@ -93,7 +93,7 @@ def test_min_failed(self): task2 = Task("Task 2") task3 = Task("Task 3") - with instructions("fail tasks 1 and 3"): + with instructions("fail tasks 1 and 3. Don't work on task 2."): run_tasks( [task1, task2, task3], run_until=AnyFailed(min_failed=2), @@ -157,7 +157,7 @@ async def test_min_failed(self): task2 = Task("Task 2") task3 = Task("Task 3") - with instructions("fail tasks 1 and 3"): + with instructions("fail tasks 1 and 3. Don't work on task 2."): await run_tasks_async( [task1, task2, task3], run_until=AnyFailed(min_failed=2),