HBASE-27666 Addendum fix import in test
This commit is contained in:
parent
63e3f17c9f
commit
7fef94a6cd
|
@ -26,7 +26,7 @@ import java.util.concurrent.atomic.AtomicInteger;
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.hbase.Cell;
|
import org.apache.hadoop.hbase.Cell;
|
||||||
import org.apache.hadoop.hbase.HBaseClassTestRule;
|
import org.apache.hadoop.hbase.HBaseClassTestRule;
|
||||||
import org.apache.hadoop.hbase.HBaseTestingUtil;
|
import org.apache.hadoop.hbase.HBaseTestingUtility;
|
||||||
import org.apache.hadoop.hbase.HConstants;
|
import org.apache.hadoop.hbase.HConstants;
|
||||||
import org.apache.hadoop.hbase.TableName;
|
import org.apache.hadoop.hbase.TableName;
|
||||||
import org.apache.hadoop.hbase.client.RegionLocator;
|
import org.apache.hadoop.hbase.client.RegionLocator;
|
||||||
|
@ -58,7 +58,7 @@ public class TestCompactionWithShippingCoprocessor {
|
||||||
public static final HBaseClassTestRule CLASS_RULE =
|
public static final HBaseClassTestRule CLASS_RULE =
|
||||||
HBaseClassTestRule.forClass(TestCompactionWithShippingCoprocessor.class);
|
HBaseClassTestRule.forClass(TestCompactionWithShippingCoprocessor.class);
|
||||||
|
|
||||||
protected final static HBaseTestingUtil TEST_UTIL = new HBaseTestingUtil();
|
private final static HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility();
|
||||||
private static final byte[] FAMILY = Bytes.toBytes("testFamily");
|
private static final byte[] FAMILY = Bytes.toBytes("testFamily");
|
||||||
|
|
||||||
@Rule
|
@Rule
|
||||||
|
|
Loading…
Reference in New Issue