Skip to content

Commit 3fb62a8

Browse files
committed
timeout
1 parent cfc240f commit 3fb62a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

custom/src/test/java/co/elastic/otel/config/ConfigLoggingAgentListenerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ public static void teardown() throws IOException {
7070

7171
@Test
7272
public void checkLogConfigPresent() throws IOException {
73-
String output = executeCommand(createTestTargetCommand(true), 20);
73+
String output = executeCommand(createTestTargetCommand(true), 60);
7474
for (String identifyingString : identifyingStrings) {
7575
assertThat(output).contains(identifyingString);
7676
}
7777
}
7878

7979
@Test
8080
public void checkLogConfigAbsent() throws IOException {
81-
String output = executeCommand(createTestTargetCommand(false), 20);
81+
String output = executeCommand(createTestTargetCommand(false), 60);
8282
for (String identifyingString : identifyingStrings) {
8383
assertThat(output).doesNotContain(identifyingString);
8484
}

0 commit comments

Comments
 (0)