Increased sleep time in randomly failing test

This commit is contained in:
Oleg Zhurakousky
2019-07-17 11:05:05 +02:00
parent b4f5c0339f
commit 85af2e4ed6

View File

@@ -86,7 +86,7 @@ public class FunctionalExporterTests {
public void words() throws Exception {
int count = 0;
while (this.forwarder.isRunning() && count++ < 10) {
Thread.sleep(20);
Thread.sleep(50);
}
// It completed
assertThat(FunctionalExporterTests.app.inputs).contains("HELLO");