Repository: hbase Updated Branches: refs/heads/master 52fd70500 -> e71bc71c8
HBASE-15475 Addendum Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/e71bc71c Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e71bc71c Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e71bc71c Branch: refs/heads/master Commit: e71bc71c84d3562c9caca8863bbb63fe85c52f12 Parents: 52fd705 Author: Elliott Clark <[email protected]> Authored: Thu Mar 24 09:11:19 2016 -0700 Committer: Elliott Clark <[email protected]> Committed: Thu Mar 24 09:11:19 2016 -0700 ---------------------------------------------------------------------- .../test/java/org/apache/hadoop/hbase/io/hfile/TestHFile.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/e71bc71c/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFile.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFile.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFile.java index 8c080c1..73e580c 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFile.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFile.java @@ -411,13 +411,13 @@ public class TestHFile { Cell left = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("a"), Bytes.toBytes("a"), - 9, + 11, KeyValue.Type.Maximum.getCode(), HConstants.EMPTY_BYTE_ARRAY); Cell right = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("a"), Bytes.toBytes("a"), - 11, + 9, KeyValue.Type.Maximum.getCode(), HConstants.EMPTY_BYTE_ARRAY); Cell mid = HFileWriterImpl.getMidpoint(CellComparator.COMPARATOR, left, right);
