Skip to content

Commit 4aa9ae1

Browse files
Fix variable names: (#1013)
'list', not 'set'
1 parent 82f29f7 commit 4aa9ae1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exonum-java-binding/core/src/test/java/com/exonum/binding/core/storage/indices/BaseListIndexProxyGroupTestable.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ void listsInGroupMustBeIndependent() {
4242

4343
// Create a list proxy for each id
4444
Map<String, ListIndex<String>> listsById = new HashMap<>();
45-
for (String setId : elementsById.keys()) {
46-
byte[] id = bytes(setId);
47-
ListIndex<String> set = createInGroup(id, view);
45+
for (String listId : elementsById.keys()) {
46+
byte[] id = bytes(listId);
47+
ListIndex<String> list = createInGroup(id, view);
4848

49-
listsById.put(setId, set);
49+
listsById.put(listId, list);
5050
}
5151

5252
// Add elements to each list in the group

0 commit comments

Comments
 (0)