Skip to content

Commit

Permalink
try increasing timeout length
Browse files Browse the repository at this point in the history
  • Loading branch information
markro49 committed Jan 23, 2024
1 parent 715de62 commit 5ec12ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ void separateThreadHandlesInvocationExceptions() {

Execution execution = findExecution(results.testEvents(), "test()");
assertThat(execution.getDuration()) //
.isLessThanOrEqualTo(Duration.ofMillis(10));
.isLessThanOrEqualTo(Duration.ofMillis(20));
assertThat(execution.getTerminationInfo().getExecutionResult().getThrowable().orElseThrow()) //
.isInstanceOf(RuntimeException.class) //
.hasMessage("Oppps!");
Expand Down

0 comments on commit 5ec12ca

Please sign in to comment.