HBASE-27666 Addendum fix import in test

This commit is contained in:
Bryan Beaudreault 2023-02-28 14:22:44 -05:00
parent 21e3fab299
commit faf2ead301
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ import java.util.concurrent.atomic.AtomicInteger;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.Cell;
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.TableName;
import org.apache.hadoop.hbase.client.RegionLocator;
@ -58,7 +58,7 @@ public class TestCompactionWithShippingCoprocessor {
public static final HBaseClassTestRule CLASS_RULE =
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");
@Rule