Skip to content

Commit

Permalink
DDF-04321 Allow more time for itest feature startup (#4510)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhuffer authored and tbatie committed Mar 7, 2019
1 parent 251344d commit f9ba034
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@ public abstract class AbstractIntegrationTest {

private static final File UNPACK_DIRECTORY = new File("target/exam");

public static final long GENERIC_TIMEOUT_SECONDS = TimeUnit.MINUTES.toSeconds(2);
public static final long GENERIC_TIMEOUT_SECONDS = TimeUnit.MINUTES.toSeconds(5);

public static final long GENERIC_TIMEOUT_MILLISECONDS = TimeUnit.MINUTES.toMillis(2);
public static final long GENERIC_TIMEOUT_MILLISECONDS = TimeUnit.MINUTES.toMillis(5);

private static final String UNABLE_TO_DETERMINE_EXAM_DIR_ERROR =
"Unable to determine current exam directory";
Expand Down

0 comments on commit f9ba034

Please sign in to comment.