Skip to content

Commit 780bbd1

Browse files
pcmoritzrobertnishihara
authored andcommitted
fix test (#15)
1 parent a0049ff commit 780bbd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plasma/test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def finish():
380380

381381
t = threading.Timer(0.1, finish)
382382
t.start()
383-
ready, waiting = self.client1.wait([obj_id3, obj_id2, obj_id1], timeout=500, num_returns=2)
383+
ready, waiting = self.client1.wait([obj_id3, obj_id2, obj_id1], timeout=1000, num_returns=2)
384384
self.assertEqual(len(ready), 2)
385385
self.assertTrue((ready[0] == obj_id1 and ready[1] == obj_id3) or (ready[0] == obj_id3 and ready[1] == obj_id1))
386386
self.assertEqual(len(waiting), 1)

0 commit comments

Comments
 (0)