We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d03a42 commit 00c6f5eCopy full SHA for 00c6f5e
logback-classic-blackbox/src/test/java/ch/qos/logback/classic/blackbox/net/SMTPAppender_GreenTest.java
@@ -169,8 +169,9 @@ void waitUntilEmailIsSent() throws InterruptedException {
169
es.shutdown();
170
boolean terminated = es.awaitTermination(TIMEOUT, TimeUnit.MILLISECONDS);
171
// this assertion may be needlessly strict, skipped on MacOS
172
+ System.getProperty("os.name");
173
if(!terminated && !EnvUtil.isMacOs()) {
- fail("executor elapsed before accorded delay");
174
+ fail("executor elapsed before accorded delay " + System.getProperty("os.name"));
175
}
176
177
0 commit comments