milleruntime opened a new issue #2042: URL: https://github.com/apache/accumulo/issues/2042
The test class `KeyTest` has a few places in the code where `assertTrue` is used with the `Arrays.equals()` comparison. These assertions can be simplified to use the `assertArrayEquals` test. For example, the following line of code: `assertTrue(Arrays.equals(row, key.getRowBytes()));` can be replaced with the equivalent: `assertArrayEquals(row, key.getRowBytes());` -- 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]
