Fix broken Bytes.split2 test
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@769452 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9edef7b6fa
commit
4ffb3cc723
|
@ -49,7 +49,7 @@ public class TestBytes extends TestCase {
|
|||
// More split tests.
|
||||
byte [] lowest = Bytes.toBytes("http://A");
|
||||
byte [] highest = Bytes.toBytes("http://z");
|
||||
byte [] middle = Bytes.toBytes("http://[");
|
||||
byte [] middle = Bytes.toBytes("http://]");
|
||||
byte [][] parts = Bytes.split(lowest, highest, 1);
|
||||
for (int i = 0; i < parts.length; i++) {
|
||||
System.out.println(Bytes.toString(parts[i]));
|
||||
|
|
Loading…
Reference in New Issue