Skip to content

Commit

Permalink
Update namings
Browse files Browse the repository at this point in the history
  • Loading branch information
shadyabarada committed Dec 20, 2022
1 parent e8849a2 commit dc04a76
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1210,9 +1210,9 @@ public void testConcurrentIterableDataStructureUpdatesSuccess() {
channel.addGroup(TEST_GROUP_THREE, 50, BATCH_TIME_INTERVAL, MAX_PARALLEL_BATCHES, null, mockListener);

//Iterate over the map and modify twice
Iterator it1 = myMap.keySet().iterator();
while (it1.hasNext()) {
String key = it1.next().toString();
Iterator iterator = myMap.keySet().iterator();
while (iterator.hasNext()) {
String key = iterator.next().toString();
if (key.equals(TEST_GROUP_TWO)) {
channel.addGroup(TEST_GROUP, 50, BATCH_TIME_INTERVAL, MAX_PARALLEL_BATCHES, null, mockListener);
channel.addGroup(TEST_GROUP_FOUR, 50, BATCH_TIME_INTERVAL, MAX_PARALLEL_BATCHES, null, mockListener);
Expand Down

0 comments on commit dc04a76

Please sign in to comment.