Skip to content

Commit 284121f

Browse files
committed
Fix method signature for randomNextInt in test
Corrects syntax error in method override signature.
1 parent f06b7d0 commit 284121f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/test/java/com/datastax/oss/driver/internal/core/loadbalancing/DefaultLoadBalancingPolicyQueryPlanTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ protected long nanoTime() {
475475
}
476476

477477
@Override
478-
protected int randomNextInt(4) {
478+
protected int randomNextInt(int bound) {
479479
return diceRoll;
480480
}
481481
});

0 commit comments

Comments
 (0)