aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2019-10-21 16:37:41 +0200
committergjoranv <gv@verizonmedia.com>2019-10-22 14:31:46 +0200
commit2a9a2c8ef869f8999661e15874f654cf044e0f33 (patch)
treec252eb5619df5c24f0cd3c35fe90c1727c944492 /bundle-plugin-test
parentdbfa0726b21b589d48410990a675a578f8ae7535 (diff)
Move tests to package c.y.container.plugin
Diffstat (limited to 'bundle-plugin-test')
-rw-r--r--bundle-plugin-test/integration-test/src/test/java/com/yahoo/container/plugin/BundleTest.java (renamed from bundle-plugin-test/integration-test/src/test/java/com/yahoo/BundleTest.java)2
-rw-r--r--bundle-plugin-test/integration-test/src/test/java/com/yahoo/container/plugin/ExportPackageVersionTest.java (renamed from bundle-plugin-test/integration-test/src/test/java/com/yahoo/ExportPackageVersionTest.java)4
2 files changed, 3 insertions, 3 deletions
diff --git a/bundle-plugin-test/integration-test/src/test/java/com/yahoo/BundleTest.java b/bundle-plugin-test/integration-test/src/test/java/com/yahoo/container/plugin/BundleTest.java
index 9fb7e0e03ca..3c0379952fa 100644
--- a/bundle-plugin-test/integration-test/src/test/java/com/yahoo/BundleTest.java
+++ b/bundle-plugin-test/integration-test/src/test/java/com/yahoo/container/plugin/BundleTest.java
@@ -1,5 +1,5 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo;
+package com.yahoo.container.plugin;
import com.yahoo.osgi.maven.ProjectBundleClassPaths;
import com.yahoo.vespa.config.VespaVersion;
diff --git a/bundle-plugin-test/integration-test/src/test/java/com/yahoo/ExportPackageVersionTest.java b/bundle-plugin-test/integration-test/src/test/java/com/yahoo/container/plugin/ExportPackageVersionTest.java
index 307a0698bd1..46f8dd61576 100644
--- a/bundle-plugin-test/integration-test/src/test/java/com/yahoo/ExportPackageVersionTest.java
+++ b/bundle-plugin-test/integration-test/src/test/java/com/yahoo/container/plugin/ExportPackageVersionTest.java
@@ -1,5 +1,5 @@
// Copyright 2019 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo;
+package com.yahoo.container.plugin;
import org.junit.BeforeClass;
import org.junit.Test;
@@ -9,7 +9,7 @@ import java.io.IOException;
import java.util.jar.Attributes;
import java.util.jar.JarFile;
-import static com.yahoo.BundleTest.findBundleJar;
+import static com.yahoo.container.plugin.BundleTest.findBundleJar;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.not;
import static org.junit.Assert.assertThat;