Skip to content

Commit

Permalink
Increase wait times
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Kurz <[email protected]>
  • Loading branch information
scottkurz committed Aug 9, 2022
1 parent b77d937 commit 27b34b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void purgeUpstreamSourcePart_DevMode_Test() throws Exception {
startProcess(null, true, "mvn io.openliberty.tools:liberty-maven-plugin:"+System.getProperty("mavenPluginVersion")+":", false);

// TODO when https://github.com/OpenLiberty/ci.maven/issues/1203 is fixed, check for compilation error instead
assertTrue(getLogTail(logFile), verifyLogMessageExists("error: package io.openliberty.guides.multimodules.lib does not exist", 5000));
assertTrue(getLogTail(logFile), verifyLogMessageExists("error: package io.openliberty.guides.multimodules.lib does not exist", 25000));

assertFalse(getLogTail(logFile), targetClass.exists());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void purgeUpstreamSourcePart_LibertyRun_Test() throws Exception {
startProcess(null, false, "mvn io.openliberty.tools:liberty-maven-plugin:"+System.getProperty("mavenPluginVersion")+":", false);

// TODO when https://github.com/OpenLiberty/ci.maven/issues/1203 is fixed, check for compilation error instead
assertTrue(getLogTail(logFile), verifyLogMessageExists("error: package io.openliberty.guides.multimodules.lib does not exist", 5000));
assertTrue(getLogTail(logFile), verifyLogMessageExists("error: package io.openliberty.guides.multimodules.lib does not exist", 25000));

assertFalse(getLogTail(logFile), targetClass.exists());
}
Expand Down

0 comments on commit 27b34b6

Please sign in to comment.