This is an automated email from the ASF dual-hosted git repository.
mmerli pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new f4ef546 Fixed PulsarZKDowngradeTest imports after cherry-pick
f4ef546 is described below
commit f4ef546f19b09860cea5691328b54b632c6946ea
Author: Matteo Merli <[email protected]>
AuthorDate: Thu Sep 6 11:30:28 2018 -0700
Fixed PulsarZKDowngradeTest imports after cherry-pick
---
tests/integration-tests-topologies/pom.xml | 5 +++++
.../org/apache/pulsar/tests/upgrade/PulsarZKDowngradeTest.java | 8 ++++----
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/tests/integration-tests-topologies/pom.xml
b/tests/integration-tests-topologies/pom.xml
index 65962da..46070ea 100644
--- a/tests/integration-tests-topologies/pom.xml
+++ b/tests/integration-tests-topologies/pom.xml
@@ -51,6 +51,11 @@
<artifactId>integration-tests-utils</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.pulsar</groupId>
+ <artifactId>pulsar-client-original</artifactId>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>
</project>
diff --git
a/tests/integration-tests-topologies/src/main/java/org/apache/pulsar/tests/upgrade/PulsarZKDowngradeTest.java
b/tests/integration-tests-topologies/src/main/java/org/apache/pulsar/tests/upgrade/PulsarZKDowngradeTest.java
index 6005aa7..ec213fe 100644
---
a/tests/integration-tests-topologies/src/main/java/org/apache/pulsar/tests/upgrade/PulsarZKDowngradeTest.java
+++
b/tests/integration-tests-topologies/src/main/java/org/apache/pulsar/tests/upgrade/PulsarZKDowngradeTest.java
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-package org.apache.pulsar.tests.integration.upgrade;
+package org.apache.pulsar.tests.upgrade;
import static java.util.stream.Collectors.joining;
import static org.testng.Assert.assertEquals;
@@ -33,9 +33,9 @@ import org.apache.pulsar.client.api.Message;
import org.apache.pulsar.client.api.Producer;
import org.apache.pulsar.client.api.PulsarClient;
import org.apache.pulsar.client.api.Schema;
-import org.apache.pulsar.tests.integration.topologies.PulsarCluster;
-import org.apache.pulsar.tests.integration.topologies.PulsarClusterSpec;
-import org.apache.pulsar.tests.integration.topologies.PulsarClusterTestBase;
+import org.apache.pulsar.tests.topologies.PulsarCluster;
+import org.apache.pulsar.tests.topologies.PulsarClusterSpec;
+import org.apache.pulsar.tests.topologies.PulsarClusterTestBase;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.Test;