Skip to content

Commit

Permalink
fixed test compile error
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Jaeckle <thomas.jaeckle@bosch.io>
  • Loading branch information
thjaeckle committed Jul 5, 2022
1 parent e00927d commit 56e759d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import static org.assertj.core.api.Assertions.assertThat;

import java.time.Duration;
import java.time.Instant;
import java.util.ArrayList;
import java.util.Collection;
Expand Down Expand Up @@ -807,7 +808,7 @@ private static class MockPolicyPersistenceSupervisor
private final ActorRef pubSubMediator;

private MockPolicyPersistenceSupervisor(final ActorRef pubSubMediator, final ActorRef policyPersistenceActor) {
super(policyPersistenceActor, null, null);
super(policyPersistenceActor, null, null, Duration.ofSeconds(5));
this.pubSubMediator = pubSubMediator;
}

Expand Down

0 comments on commit 56e759d

Please sign in to comment.