Skip to content

Commit a36a55e

Browse files
committed
Use assertArrayEquals for byte[]
1 parent 118cad7 commit a36a55e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fdb-record-layer-core/src/test/java/com/apple/foundationdb/record/provider/foundationdb/keyspace/DataInKeySpacePathTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ void keyValueAccessors(boolean withRemainder) throws ExecutionException, Interru
288288

289289
final ResolvedKeySpacePath resolvedPath = resolvedFuture.get();
290290
assertEquals(pathTuple, resolvedPath.toTuple());
291-
assertEquals(originalKeyValue.getValue(), dataInPath.getValue());
291+
assertArrayEquals(originalKeyValue.getValue(), dataInPath.getValue());
292292
if (withRemainder) {
293293
assertEquals(Tuple.from("Remainder"), resolvedPath.getRemainder());
294294
} else {

0 commit comments

Comments
 (0)