test fix: timer timeout has changed

This commit is contained in:
Daniel Lehrner
2024-12-05 07:32:59 +01:00
parent a7322fc820
commit 866de0bc88

View File

@@ -79,7 +79,7 @@ class JsonRpcExecutorHandlerTest {
handler.handle(mockContext);
// Assert
verify(mockVertx).setTimer(eq(30000L), any());
verify(mockVertx).setTimer(eq(300000L), any());
// Simulate timeout
timerHandlerCaptor.getValue().handle(1L);