summaryrefslogtreecommitdiffstats
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-23 17:06:02 +0200
commitecbe5f08da00e7eb922b6912c59cefd3dad5dc45 (patch)
tree0abd0231876274cbcb21c9f6b749c22d94e690ee /bundle-plugin-test
parent5711cb8b5257f2bfcea1ab0a5b2f75b262c0f5d7 (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;