Upped the timeout to 5 seconds

resolves #233
This commit is contained in:
Glenn Renfro
2016-10-27 18:59:11 -04:00
committed by Thomas Risberg
parent 2444b8055e
commit 91c3781829

View File

@@ -49,7 +49,7 @@ public class BatchEventsApplicationTests {
@Test
public void testExecution() throws Exception {
SpringApplication.run(BatchEventsApplication.class);
Assert.assertTrue(jobExecutionLatch.await(1, TimeUnit.SECONDS));
Assert.assertTrue(jobExecutionLatch.await(5, TimeUnit.SECONDS));
}
@EnableBinding(Sink.class)