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:
ndimiduk 2013-10-14 17:38:50 +00:00
parent 1be3aeda38
commit 8f5417f696
1 changed files with 2 additions and 2 deletions

View File

@ -935,7 +935,7 @@ public class TestOrderedBytes {
assertArrayEquals(
String.format(
"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);
}
}
@ -1010,7 +1010,7 @@ public class TestOrderedBytes {
assertArrayEquals(
String.format(
"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);
}
}