Bump timeout on randomly failing test

This commit is contained in:
Oleg Zhurakousky
2021-07-16 10:04:02 +02:00
parent 57816b1920
commit 70feca33ec

View File

@@ -71,7 +71,7 @@ public class SourceToFunctionsSupportTests {
"--spring.jmx.enabled=false")) {
OutputDestination target = context.getBean(OutputDestination.class);
assertThat(target.receive(1000).getPayload())
assertThat(target.receive(5000).getPayload())
.isEqualTo("HELLO FUNCTION".getBytes(StandardCharsets.UTF_8));
}
}