Skip to content

Commit

Permalink
Relax time threshold in TestObservationRegistryAssertTests.should_not…
Browse files Browse the repository at this point in the history
…_break_on_multiple_threads() (#3697)
  • Loading branch information
izeye committed Mar 11, 2023
1 parent 4721a2e commit cb1358a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void should_not_break_on_multiple_threads() {

Awaitility.await()
.pollDelay(Duration.ofMillis(10))
.atMost(Duration.ofMillis(50))
.atMost(Duration.ofMillis(100))
.untilAsserted(() -> BDDAssertions.then(registry.getContexts()).hasSize(3));
}

Expand Down

0 comments on commit cb1358a

Please sign in to comment.