HBASE-19882 Promote TestProcedureManager to MediumTests
This commit is contained in:
parent
fcbcfaa120
commit
305da1098a
|
@ -26,23 +26,20 @@ import org.apache.hadoop.hbase.HBaseClassTestRule;
|
|||
import org.apache.hadoop.hbase.HBaseTestingUtility;
|
||||
import org.apache.hadoop.hbase.client.Admin;
|
||||
import org.apache.hadoop.hbase.testclassification.MasterTests;
|
||||
import org.apache.hadoop.hbase.testclassification.SmallTests;
|
||||
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Test;
|
||||
import org.junit.experimental.categories.Category;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
@Category({MasterTests.class, SmallTests.class})
|
||||
@Category({MasterTests.class, MediumTests.class})
|
||||
public class TestProcedureManager {
|
||||
|
||||
@ClassRule
|
||||
public static final HBaseClassTestRule CLASS_RULE =
|
||||
HBaseClassTestRule.forClass(TestProcedureManager.class);
|
||||
|
||||
private static final Logger LOG = LoggerFactory.getLogger(TestProcedureManager.class);
|
||||
private static final int NUM_RS = 2;
|
||||
private static HBaseTestingUtility util = new HBaseTestingUtility();
|
||||
|
||||
|
|
Loading…
Reference in New Issue