Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a70bbdd

Browse files
committedFeb 6, 2024
Fix test
1 parent 2e302a1 commit a70bbdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎distributed/tests/test_scheduler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ def func(first, second):
624624
secede()
625625
second.wait()
626626

627-
fs = c.map(func, [first] * 5, [second] * 5)
627+
fs = c.map(func, [first] * 5, [second] * 5, key=[f"x{i}" for i in range(5)])
628628
await async_poll_for(lambda: a.state.executing, timeout=5)
629629

630630
await first.set()

0 commit comments

Comments
 (0)
Please sign in to comment.