Skip to content

Commit

Permalink
Update test_run.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jlowin committed Oct 9, 2024
1 parent 0dcbe6e commit 1cc4986
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit 1cc4986

Please sign in to comment.