File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
core/src/test/java/com/datastax/oss/driver/internal/core/pool Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ public void should_shrink_during_reconnection() throws Exception {
125
125
126
126
factoryHelper .waitForCalls (node , 2 );
127
127
128
- // Pool should have shrinked back to 2. We keep the most recent channels so 1 and 2 get closed.
128
+ // Pool should have shrunk back to 2. We keep the most recent channels so 1 and 2 get closed.
129
129
inOrder .verify (eventBus , VERIFY_TIMEOUT .times (2 )).fire (ChannelEvent .channelOpened (node ));
130
130
inOrder .verify (eventBus , VERIFY_TIMEOUT .times (2 )).fire (ChannelEvent .channelClosed (node ));
131
131
inOrder .verify (eventBus , VERIFY_TIMEOUT ).fire (ChannelEvent .reconnectionStopped (node ));
Original file line number Diff line number Diff line change 50
50
abstract class ChannelPoolTestBase {
51
51
52
52
/** How long we wait when verifying mocks for async invocations */
53
- protected static final VerificationWithTimeout VERIFY_TIMEOUT = timeout (500 );
53
+ protected static final VerificationWithTimeout VERIFY_TIMEOUT = timeout (2000 );
54
54
55
55
@ Mock protected InternalDriverContext context ;
56
56
@ Mock private DriverConfig config ;
You can’t perform that action at this time.
0 commit comments