Skip to content

Commit

Permalink
Increase timeout for SpecialCharacters test cases
Browse files Browse the repository at this point in the history
This is needed for slow Windows instances where 5 sec is not enough
  • Loading branch information
Sgitario authored and rsvoboda committed May 11, 2021
1 parent e735d79 commit 9c025b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void testRuntime(TestInfo testInfo, Apps app, MvnCmds mvnCmds, String sub

// Test web page
LOGGER.info("Testing web page content...");
int timeout = mvnCmds != MvnCmds.DEV ? 5 : 60;
int timeout = mvnCmds != MvnCmds.DEV ? 30 : 120;
for (String[] urlContent : app.urlContent.urlContent) {
WebpageTester.testWeb(urlContent[0], timeout, urlContent[1], false);
}
Expand Down

0 comments on commit 9c025b6

Please sign in to comment.