From 884ff974b5d4a4fd16a4d57ea98180db723f3e02 Mon Sep 17 00:00:00 2001 From: maoling Date: Sun, 6 May 2018 15:59:21 +0800 Subject: [PATCH] HBASE-20508:TestIncrementalBackupWithBulkLoad doesn't need to be Parameterized test --- .../hbase/backup/TestIncrementalBackupWithBulkLoad.java | 12 ------------ 1 file changed, 12 deletions(-) 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 34f732cca6..35dcee826a 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 @@ -57,7 +57,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 +65,6 @@ public class TestIncrementalBackupWithBulkLoad extends TestBackupBase { private static final Logger LOG = LoggerFactory.getLogger(TestIncrementalBackupDeleteTable.class); - @Parameterized.Parameters - public static Collection data() { - secure = true; - List 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 { -- 2.14.1.windows.1