You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bb...@apache.org on 2022/06/25 05:45:58 UTC

[hbase] branch branch-2 updated: HBASE-27060 Addendum fix HBaseTestingUtility import in test

This is an automated email from the ASF dual-hosted git repository.

bbeaudreault pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 3ed78a039b3 HBASE-27060 Addendum fix HBaseTestingUtility import in test
3ed78a039b3 is described below

commit 3ed78a039b3a957fd7e49c009bf658ce04a5ec08
Author: Bryan Beaudreault <bb...@hubspot.com>
AuthorDate: Sat Jun 25 01:44:46 2022 -0400

    HBASE-27060 Addendum fix HBaseTestingUtility import in test
---
 .../hadoop/hbase/client/coprocessor/TestAggregationClient.java       | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/hbase-endpoint/src/test/java/org/apache/hadoop/hbase/client/coprocessor/TestAggregationClient.java b/hbase-endpoint/src/test/java/org/apache/hadoop/hbase/client/coprocessor/TestAggregationClient.java
index 2d8419c12cb..1756958d7fe 100644
--- a/hbase-endpoint/src/test/java/org/apache/hadoop/hbase/client/coprocessor/TestAggregationClient.java
+++ b/hbase-endpoint/src/test/java/org/apache/hadoop/hbase/client/coprocessor/TestAggregationClient.java
@@ -20,11 +20,10 @@ package org.apache.hadoop.hbase.client.coprocessor;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
 import static org.junit.Assert.fail;
-
 import java.io.IOException;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.HBaseClassTestRule;
-import org.apache.hadoop.hbase.HBaseTestingUtil;
+import org.apache.hadoop.hbase.HBaseTestingUtility;
 import org.apache.hadoop.hbase.TableName;
 import org.apache.hadoop.hbase.client.Connection;
 import org.apache.hadoop.hbase.client.ConnectionFactory;
@@ -48,7 +47,7 @@ public class TestAggregationClient {
   public static final HBaseClassTestRule CLASS_RULE =
     HBaseClassTestRule.forClass(TestAggregationClient.class);
 
-  private static final HBaseTestingUtil UTIL = new HBaseTestingUtil();
+  private static final HBaseTestingUtility UTIL = new HBaseTestingUtility();
 
   private static final TableName TABLE_NAME = TableName.valueOf("TestAggregationClient");