Skip to content

Commit

Permalink
revert test modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter committed Aug 3, 2023
1 parent b67a624 commit 26041ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions distributed/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2118,11 +2118,11 @@ async def test_forget_simple(c, s, a, b):

@gen_cluster(client=True)
async def test_forget_complex(e, s, A, B):
a, b, c, d = (await e.scatter({k: v for k, v in zip("abcd", range(4))})).values()
ab = e.submit(add, a, b, key="ab")
cd = e.submit(add, c, d, key="cd")
ac = e.submit(add, a, c, key="ac")
acab = e.submit(add, ac, ab, key="acab")
a, b, c, d = await e.scatter(list(range(4)))
ab = e.submit(add, a, b)
cd = e.submit(add, c, d)
ac = e.submit(add, a, c)
acab = e.submit(add, ac, ab)

await wait([a, b, c, d, ab, ac, cd, acab])

Expand Down

0 comments on commit 26041ef

Please sign in to comment.