Skip to content

Commit 33b79a4

Browse files
committed
Delete racy part of test_multiprocessing_graalpy.test_wait
1 parent b8d7270 commit 33b79a4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_multiprocessing_graalpy.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,3 @@ def test_wait():
8080
res = wait([b, x], 3)
8181
assert res == [x], "res3"
8282
assert x.recv() == 33, "res4"
83-
a.send(1)
84-
y.send(2)
85-
res = wait([b, x], 3)
86-
assert set(res) == {b, x}
87-
assert b.recv() == 1
88-
assert x.recv() == 2

0 commit comments

Comments
 (0)