Skip to content

Commit fa5998e

Browse files
committed
Trying to fix flaky CoroutinesIntegrationTests
1 parent 2bf8eeb commit fa5998e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-webflux/src/test/kotlin/org/springframework/web/reactive/result/method/annotation/CoroutinesIntegrationTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ class CoroutinesIntegrationTests : AbstractRequestMappingIntegrationTests() {
198198
suspend fun entityFlux() : ResponseEntity<Flux<String>> {
199199
val strings = Flux.interval(Duration.ofMillis(100)).take(5)
200200
.map { l -> l.toString() }
201-
delay(1)
201+
delay(10)
202202
return ResponseEntity.ok().body(strings)
203203
}
204204

0 commit comments

Comments
 (0)