Represent timeouts as Durations rather than bare millis

This commit is contained in:
Jon Chambers
2025-07-31 14:28:34 -04:00
committed by Jon Chambers
parent ef644ce319
commit 76e65a47a2
2 changed files with 7 additions and 7 deletions

View File

@@ -294,7 +294,7 @@ class WebSocketConnectionIntegrationTest {
account,
device,
webSocketClient,
1000, // use a short timeout, so that this test completes quickly
Duration.ofSeconds(1), // use a short timeout, so that this test completes quickly
messageDeliveryScheduler,
clientReleaseManager,
mock(MessageDeliveryLoopMonitor.class),