ctubbsii commented on a change in pull request #2150:
URL: https://github.com/apache/accumulo/pull/2150#discussion_r647567163
##########
File path:
core/src/test/java/org/apache/accumulo/core/clientImpl/TableOperationsHelperTest.java
##########
@@ -267,7 +269,7 @@ void check(TableOperationsHelper t, String tablename,
String[] values) throws Ex
String[] parts = value.split("=", 2);
expected.put(parts[0], parts[1]);
}
- Map<String,String> actual = Map.copyOf(t.getConfiguration(tablename));
Review comment:
This one doesn't matter. Map equality doesn't depend on order, only
equivalent mappings. It'd be better to avoid the use of Guava's method here.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]