Skip to content

Commit f48a1ba

Browse files
committed
Increase timeout for AsyncLoggerConfigTest
1 parent 7a9a639 commit f48a1ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public void testSingleFilterInvocation() {
109109
disruptor.start();
110110
try {
111111
config.log(FQCN, FQCN, null, Level.INFO, new SimpleMessage(), null);
112-
verify(appender, timeout(100).times(1)).append(any());
112+
verify(appender, timeout(500).times(1)).append(any());
113113
verify(filter, times(1)).filter(any());
114114
} finally {
115115
disruptor.stop();

0 commit comments

Comments
 (0)