HBASE-9692 TestOrderedBytes doesn't display the arrays correctly
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1531992 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1be3aeda38
commit
8f5417f696
|
@ -935,7 +935,7 @@ public class TestOrderedBytes {
|
||||||
assertArrayEquals(
|
assertArrayEquals(
|
||||||
String.format(
|
String.format(
|
||||||
"Encoded representations do not preserve natural order: <%s>, <%s>, %s",
|
"Encoded representations do not preserve natural order: <%s>, <%s>, %s",
|
||||||
sortedVals[i], decoded, ord),
|
Arrays.toString(sortedVals[i]), Arrays.toString(decoded), ord),
|
||||||
sortedVals[i], decoded);
|
sortedVals[i], decoded);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1010,7 +1010,7 @@ public class TestOrderedBytes {
|
||||||
assertArrayEquals(
|
assertArrayEquals(
|
||||||
String.format(
|
String.format(
|
||||||
"Encoded representations do not preserve natural order: <%s>, <%s>, %s",
|
"Encoded representations do not preserve natural order: <%s>, <%s>, %s",
|
||||||
sortedVals[i], decoded, ord),
|
Arrays.toString(sortedVals[i]), Arrays.toString(decoded), ord),
|
||||||
sortedVals[i], decoded);
|
sortedVals[i], decoded);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue