Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-v committed Jul 6, 2024
1 parent 18eeffe commit 4c66fd3
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.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.reset;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

Expand Down Expand Up @@ -71,7 +72,7 @@ class FailureDetectorTest {
@BeforeEach
void beforeEach() {
transport = mock(Transport.class);
callbackInvoker = mock(CallbackInvoker.class);
callbackInvoker = spy(new CallbackInvoker(epochClock));

when(transport.newMessagePoller()).thenReturn(messagePoller);

Expand Down

0 comments on commit 4c66fd3

Please sign in to comment.