You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by la...@apache.org on 2019/06/15 22:58:42 UTC

[phoenix] branch 4.x-HBase-1.4 updated: PHOENIX-5347 Turn ChunkedResultIteratorTest and CoprocessorHConnectionTableFactoryTest into ITs.

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

larsh pushed a commit to branch 4.x-HBase-1.4
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x-HBase-1.4 by this push:
     new 84b6609  PHOENIX-5347 Turn ChunkedResultIteratorTest and CoprocessorHConnectionTableFactoryTest into ITs.
84b6609 is described below

commit 84b660985eb5b5873054e57d9957e03917fc4546
Author: Lars Hofhansl <la...@apache.org>
AuthorDate: Sat Jun 15 15:59:02 2019 -0700

    PHOENIX-5347 Turn ChunkedResultIteratorTest and CoprocessorHConnectionTableFactoryTest into ITs.
---
 .../java/org/apache/phoenix/iterate/ChunkedResultIteratorIT.java}     | 2 +-
 .../apache/phoenix/util/CoprocessorHConnectionTableFactoryIT.java}    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/phoenix-core/src/test/java/org/apache/phoenix/iterate/ChunkedResultIteratorTest.java b/phoenix-core/src/it/java/org/apache/phoenix/iterate/ChunkedResultIteratorIT.java
similarity index 99%
rename from phoenix-core/src/test/java/org/apache/phoenix/iterate/ChunkedResultIteratorTest.java
rename to phoenix-core/src/it/java/org/apache/phoenix/iterate/ChunkedResultIteratorIT.java
index 18402f0..4a59844 100644
--- a/phoenix-core/src/test/java/org/apache/phoenix/iterate/ChunkedResultIteratorTest.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/iterate/ChunkedResultIteratorIT.java
@@ -39,7 +39,7 @@ import org.apache.phoenix.schema.TableRef;
 import org.junit.Assert;
 import org.junit.Test;
 
-@SuppressWarnings("deprecated") public class ChunkedResultIteratorTest
+@SuppressWarnings("deprecated") public class ChunkedResultIteratorIT
         extends ParallelStatsDisabledIT {
 
     @Test
diff --git a/phoenix-core/src/test/java/org/apache/phoenix/util/CoprocessorHConnectionTableFactoryTest.java b/phoenix-core/src/it/java/org/apache/phoenix/util/CoprocessorHConnectionTableFactoryIT.java
similarity index 97%
rename from phoenix-core/src/test/java/org/apache/phoenix/util/CoprocessorHConnectionTableFactoryTest.java
rename to phoenix-core/src/it/java/org/apache/phoenix/util/CoprocessorHConnectionTableFactoryIT.java
index 10454ce..0d5d784 100644
--- a/phoenix-core/src/test/java/org/apache/phoenix/util/CoprocessorHConnectionTableFactoryTest.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/util/CoprocessorHConnectionTableFactoryIT.java
@@ -39,10 +39,10 @@ import org.slf4j.LoggerFactory;
  * close should not close the shared connections 2. region server close should close the shared
  * connections
  */
-public class CoprocessorHConnectionTableFactoryTest extends BaseUniqueNamesOwnClusterIT {
+public class CoprocessorHConnectionTableFactoryIT extends BaseUniqueNamesOwnClusterIT {
   private static String ORG_PREFIX = "ORG";
   private static final Logger LOGGER =
-          LoggerFactory.getLogger(CoprocessorHConnectionTableFactoryTest.class);
+          LoggerFactory.getLogger(CoprocessorHConnectionTableFactoryIT.class);
 
   @BeforeClass
   public static final void doSetup() throws Exception {