You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2015/09/11 13:44:03 UTC

hbase git commit: HBASE-14307 Addendum fixes compilation for TestHFileBlockPositionalRead

Repository: hbase
Updated Branches:
  refs/heads/branch-1 954a6e0a7 -> 272ca1f61


HBASE-14307 Addendum fixes compilation for TestHFileBlockPositionalRead


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/272ca1f6
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/272ca1f6
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/272ca1f6

Branch: refs/heads/branch-1
Commit: 272ca1f61ae315936efd95f4092753f7c1055198
Parents: 954a6e0
Author: tedyu <yu...@gmail.com>
Authored: Fri Sep 11 04:43:35 2015 -0700
Committer: tedyu <yu...@gmail.com>
Committed: Fri Sep 11 04:43:35 2015 -0700

----------------------------------------------------------------------
 .../hadoop/hbase/io/hfile/TestHFileBlockPositionalRead.java       | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/272ca1f6/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFileBlockPositionalRead.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFileBlockPositionalRead.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFileBlockPositionalRead.java
index a4f2338..e339c6e 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFileBlockPositionalRead.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFileBlockPositionalRead.java
@@ -23,7 +23,6 @@ import static org.mockito.Mockito.*;
 import java.io.IOException;
 
 import org.apache.hadoop.fs.FSDataInputStream;
-import org.apache.hadoop.hbase.testclassification.IOTests;
 import org.apache.hadoop.hbase.testclassification.SmallTests;
 import org.junit.Rule;
 import org.junit.Test;
@@ -33,7 +32,7 @@ import org.junit.rules.ExpectedException;
 /**
  * Unit test suite covering HFileBlock positional read logic.
  */
-@Category({IOTests.class, SmallTests.class})
+@Category({SmallTests.class})
 public class TestHFileBlockPositionalRead {
 
   @Rule