Skip to content

Commit cb1358a

Browse files
authored
Relax time threshold in TestObservationRegistryAssertTests.should_not_break_on_multiple_threads() (#3697)
1 parent 4721a2e commit cb1358a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

micrometer-observation-test/src/test/java/io/micrometer/observation/tck/TestObservationRegistryAssertTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void should_not_break_on_multiple_threads() {
4545

4646
Awaitility.await()
4747
.pollDelay(Duration.ofMillis(10))
48-
.atMost(Duration.ofMillis(50))
48+
.atMost(Duration.ofMillis(100))
4949
.untilAsserted(() -> BDDAssertions.then(registry.getContexts()).hasSize(3));
5050
}
5151

0 commit comments

Comments
 (0)