Fix build, damn you hudson for not being unicode compatible!
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@985422 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4784ec1b57
commit
81df7e7598
|
@ -70,7 +70,7 @@ public class TestReseekTo {
|
|||
String value = valueList.get(i);
|
||||
long start = System.nanoTime();
|
||||
scanner.seekTo(Bytes.toBytes(key));
|
||||
System.out.println("Seek Finished in: " + (System.nanoTime() - start)/1000 + " ľs");
|
||||
System.out.println("Seek Finished in: " + (System.nanoTime() - start)/1000 + " micro s");
|
||||
assertEquals(value, scanner.getValueString());
|
||||
}
|
||||
|
||||
|
@ -80,7 +80,7 @@ public class TestReseekTo {
|
|||
String value = valueList.get(i);
|
||||
long start = System.nanoTime();
|
||||
scanner.reseekTo(Bytes.toBytes(key));
|
||||
System.out.println("Reseek Finished in: " + (System.nanoTime() - start)/1000 + " ľs");
|
||||
System.out.println("Reseek Finished in: " + (System.nanoTime() - start)/1000 + " micro s");
|
||||
assertEquals(value, scanner.getValueString());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue