Skip to content

Commit

Permalink
Increase timeout for testSchedule
Browse files Browse the repository at this point in the history
  • Loading branch information
danetsao committed Jan 18, 2024
1 parent dece206 commit 41f732d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void testSchedule() throws SchedulerException {
assertEquals(1, schedulerListener.getJobsAddedCount());
assertEquals(1, schedulerListener.getJobsScheduledCount());

await().pollDelay(1, TimeUnit.SECONDS).timeout(90, TimeUnit.SECONDS).untilAsserted(
await().pollDelay(1, TimeUnit.SECONDS).timeout(120, TimeUnit.SECONDS).untilAsserted(
() -> assertEquals(1, jobListener.getJobsExecutedCount()));
}

Expand Down

0 comments on commit 41f732d

Please sign in to comment.