Skip to content

Commit

Permalink
chore: Increased timeout for countdownlatch
Browse files Browse the repository at this point in the history
  • Loading branch information
vemilyus committed Aug 10, 2023
1 parent e13b314 commit a14223e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ public void testAsyncToCompletableFuture() throws Exception {
.exceptionally(v -> null)
.thenRun(checkpoint::countDown);

Assertions.assertTrue(checkpoint.await(30, TimeUnit.SECONDS));
Assertions.assertTrue(checkpoint.await(60, TimeUnit.SECONDS));
FFmpegResult encodingResult = futureRef.get();
Assertions.assertNotNull(encodingResult);

Expand Down

0 comments on commit a14223e

Please sign in to comment.