Skip to content

Commit

Permalink
G2-1631 Increase wait time for multi-threaded tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gdgib committed Aug 31, 2024
1 parent f938302 commit acc8621
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ protected final void test(final IConsumer2<Path, Path> prep, final IConsumer2<Pa
}
}, HCollection.asSet(kinds).toArray(new Kind[0]));
synchronized (events) {
events.wait(10);
events.wait(100);
}

// Perform the modification
if (modify != null) modify.accept(temp.get(), file);
synchronized (events) {
events.wait(10);
events.wait(100);
}

// Look for the expected events
Expand Down

0 comments on commit acc8621

Please sign in to comment.