Skip to content

Commit

Permalink
Increase timeout waiting for stopped event in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgraham committed Nov 9, 2022
1 parent cc67bd3 commit f032016
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3234,8 +3234,8 @@ public void run(DataRequestMonitor<Object> drm) {
}
});

eventWaitor.waitForEvent(TestsPlugin.massageTimeout(100)); // confirm one thread was suspended
eventWaitor.waitForEvent(TestsPlugin.massageTimeout(100)); // confirm the other thread was suspended
eventWaitor.waitForEvent(TestsPlugin.massageTimeout(1000)); // confirm one thread was suspended
eventWaitor.waitForEvent(TestsPlugin.massageTimeout(1000)); // confirm the other thread was suspended

// Also confirm that all processes are suspended
Boolean result = runAsyncCall(new AsyncRunnable<Boolean>() {
Expand Down

0 comments on commit f032016

Please sign in to comment.