Skip to content

Commit

Permalink
fix(tests): greater timeout on FlowTriggerCaseTest.trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-mulier-p committed Sep 5, 2023
1 parent 8fba5ee commit b5721e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void trigger() throws InterruptedException, TimeoutException {
assertThat(execution.getTaskRunList().size(), is(1));
assertThat(execution.getState().getCurrent(), is(State.Type.SUCCESS));

countDownLatch.await(5, TimeUnit.SECONDS);
countDownLatch.await(10, TimeUnit.SECONDS);

assertThat(flowListener.get().getTaskRunList().size(), is(1));
assertThat(flowListener.get().getState().getCurrent(), is(State.Type.SUCCESS));
Expand Down

0 comments on commit b5721e3

Please sign in to comment.