Skip to content

Commit

Permalink
Fix test (#8367)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmoriceau committed Aug 15, 2023
1 parent 0a44ba3 commit 6402e44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ void testHeartbeatWithContext() throws InterruptedException {
// use async execution to avoid blocking the test thread
WorkflowClient.start(heartbeatWorkflow::execute);

assertTrue(latch.await(15, TimeUnit.SECONDS));
assertTrue(latch.await(25, TimeUnit.SECONDS));

}

Expand Down Expand Up @@ -260,7 +260,7 @@ void testHeartbeatWithContextAndCallbackRef() throws InterruptedException {
// use async execution to avoid blocking the test thread
WorkflowClient.start(heartbeatWorkflow::execute);

assertTrue(latch.await(15, TimeUnit.SECONDS));
assertTrue(latch.await(25, TimeUnit.SECONDS));

}

Expand Down

0 comments on commit 6402e44

Please sign in to comment.