Skip to content

Commit

Permalink
Replace number literals with variables
Browse files Browse the repository at this point in the history
  • Loading branch information
sgdxbc committed Jan 15, 2025
1 parent 43a03e4 commit 037bab9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void test02JoinLeave() throws InterruptedException {

runState.start(runSettings);

joinGroup(1, 3);
joinGroup(1, numServersPerGroup);

Client client = runState.addClient(client(1));
Map<String, String> kv = new HashMap<>();
Expand Down Expand Up @@ -131,7 +131,7 @@ public void test03ShardsMoveOnJoin() throws InterruptedException {

runState.start(runSettings);

joinGroup(1, 3);
joinGroup(1, numServersPerGroup);

Client client = runState.addClient(client(1));
Map<String, String> kv = new HashMap<>();
Expand Down Expand Up @@ -182,7 +182,7 @@ public void test04ShardsMoveOnMove() throws InterruptedException {

runState.start(runSettings);

joinGroup(1, 3);
joinGroup(1, numServersPerGroup);

Client client = runState.addClient(client(1));
Map<String, String> kv = new HashMap<>();
Expand Down

0 comments on commit 037bab9

Please sign in to comment.