aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test
diff options
context:
space:
mode:
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);