Skip to content

Commit

Permalink
what is the os.name
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Sep 6, 2024
1 parent 7d03a42 commit 00c6f5e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,9 @@ void waitUntilEmailIsSent() throws InterruptedException {
es.shutdown();
boolean terminated = es.awaitTermination(TIMEOUT, TimeUnit.MILLISECONDS);
// this assertion may be needlessly strict, skipped on MacOS
System.getProperty("os.name");
if(!terminated && !EnvUtil.isMacOs()) {
fail("executor elapsed before accorded delay");
fail("executor elapsed before accorded delay " + System.getProperty("os.name"));
}

}
Expand Down

0 comments on commit 00c6f5e

Please sign in to comment.