You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ch...@apache.org on 2018/05/07 01:41:50 UTC

hbase git commit: HBASE-20508 TestIncrementalBackupWithBulkLoad doesn't need to be Parameterized test

Repository: hbase
Updated Branches:
  refs/heads/master 971f5350e -> 5e14e125b


HBASE-20508 TestIncrementalBackupWithBulkLoad doesn't need to be Parameterized test

Signed-off-by: Chia-Ping Tsai <ch...@gmail.com>


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

Branch: refs/heads/master
Commit: 5e14e125b2d930dbe29760d5872fd78e9c8299fe
Parents: 971f535
Author: maoling <ma...@sina.com>
Authored: Sun May 6 15:59:21 2018 +0800
Committer: Chia-Ping Tsai <ch...@gmail.com>
Committed: Mon May 7 09:36:44 2018 +0800

----------------------------------------------------------------------
 .../backup/TestIncrementalBackupWithBulkLoad.java   | 16 ----------------
 1 file changed, 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/5e14e125/hbase-backup/src/test/java/org/apache/hadoop/hbase/backup/TestIncrementalBackupWithBulkLoad.java
----------------------------------------------------------------------
diff --git a/hbase-backup/src/test/java/org/apache/hadoop/hbase/backup/TestIncrementalBackupWithBulkLoad.java b/hbase-backup/src/test/java/org/apache/hadoop/hbase/backup/TestIncrementalBackupWithBulkLoad.java
index 34f732c..74dd569 100644
--- a/hbase-backup/src/test/java/org/apache/hadoop/hbase/backup/TestIncrementalBackupWithBulkLoad.java
+++ b/hbase-backup/src/test/java/org/apache/hadoop/hbase/backup/TestIncrementalBackupWithBulkLoad.java
@@ -19,8 +19,6 @@ package org.apache.hadoop.hbase.backup;
 
 import static org.junit.Assert.assertTrue;
 
-import java.util.ArrayList;
-import java.util.Collection;
 import java.util.List;
 import java.util.Map;
 import org.apache.hadoop.hbase.HBaseClassTestRule;
@@ -41,8 +39,6 @@ import org.junit.Assert;
 import org.junit.ClassRule;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
-import org.junit.runner.RunWith;
-import org.junit.runners.Parameterized;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -57,7 +53,6 @@ import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
  * 6 Incremental backup t1
  */
 @Category(LargeTests.class)
-@RunWith(Parameterized.class)
 public class TestIncrementalBackupWithBulkLoad extends TestBackupBase {
 
   @ClassRule
@@ -66,17 +61,6 @@ public class TestIncrementalBackupWithBulkLoad extends TestBackupBase {
 
   private static final Logger LOG = LoggerFactory.getLogger(TestIncrementalBackupDeleteTable.class);
 
-  @Parameterized.Parameters
-  public static Collection<Object[]> data() {
-    secure = true;
-    List<Object[]> params = new ArrayList<>();
-    params.add(new Object[] {Boolean.TRUE});
-    return params;
-  }
-
-  public TestIncrementalBackupWithBulkLoad(Boolean b) {
-  }
-
   // implement all test cases in 1 test since incremental backup/restore has dependencies
   @Test
   public void TestIncBackupDeleteTable() throws Exception {