Skip to content

Commit

Permalink
Fixed unit test.
Browse files Browse the repository at this point in the history
Signed-off-by: Cody Littley <cody@swirldslabs.com>
  • Loading branch information
cody-littley committed Nov 20, 2023
1 parent f946c8c commit de36684
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void heartbeatByPeriodTest() throws InterruptedException {
final TaskScheduler<Void> scheduler =
model.schedulerBuilder("test").build().cast();
final Bindable<Instant, Void> heartbeatBindable =
scheduler.buildHeartbeatInputWire("heartbeat", Duration.ofMillis(100));
scheduler.buildHeartbeatInputWire("heartbeat", Duration.ofMillis(10));

final AtomicLong counter = new AtomicLong(0);
heartbeatBindable.bind((time) -> {
Expand Down

0 comments on commit de36684

Please sign in to comment.