aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@oath.com>2018-10-18 09:47:20 +0200
committergjoranv <gv@oath.com>2019-01-21 15:09:24 +0100
commitdfa28e14638f0653a066edc3cfc72f0a99aedcad (patch)
treeec13468346f725e04d567e16538b949120dd7d2b /bundle-plugin-test
parent69ecd4a99a648c95975a898242418a80c2a22c08 (diff)
A few more updates to 7-SNAPSHOT.
Diffstat (limited to 'bundle-plugin-test')
-rw-r--r--bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java b/bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java
index 38ca08ecff1..10f8f4e976c 100644
--- a/bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java
+++ b/bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java
@@ -109,15 +109,15 @@ public class BundleIT {
assertThat(bundleClassPath, containsString(".,"));
// If bundle-plugin-test is compiled in a mvn command that also built jrt,
// the jrt artifact is jrt.jar, otherwise the installed and versioned artifact
- // is used: jrt-6-SNAPSHOT.jar.
+ // is used: jrt-7-SNAPSHOT.jar.
assertThat(bundleClassPath, anyOf(
- containsString("dependencies/jrt-6-SNAPSHOT.jar"),
+ containsString("dependencies/jrt-7-SNAPSHOT.jar"),
containsString("dependencies/jrt.jar")));
}
@Test
public void require_that_component_jar_file_contains_compile_artifacts() {
- ZipEntry versionedEntry = jarFile.getEntry("dependencies/jrt-6-SNAPSHOT.jar");
+ ZipEntry versionedEntry = jarFile.getEntry("dependencies/jrt-7-SNAPSHOT.jar");
ZipEntry unversionedEntry = jarFile.getEntry("dependencies/jrt.jar");
if (versionedEntry == null) {
assertNotNull(unversionedEntry);