Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2018-01-11 16:05:29 +0000
committerThomas Watson2018-01-11 16:05:29 +0000
commitf539d2ad9b77c9a9f03b9f4cdad08c5847dc8025 (patch)
tree9e5178f8b64639ffea43b172e4fd80f0bf6ead16
parent263b7269cf0d9f9b264796215a0ceb493b19d4cb (diff)
downloadrt.equinox.p2-f539d2ad9b77c9a9f03b9f4cdad08c5847dc8025.tar.gz
rt.equinox.p2-f539d2ad9b77c9a9f03b9f4cdad08c5847dc8025.tar.xz
rt.equinox.p2-f539d2ad9b77c9a9f03b9f4cdad08c5847dc8025.zip
Change-Id: I03d36472ad57aa8f5a68d8e719a906e7c29efec8 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/publisher/actions/JREActionTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/publisher/actions/JREActionTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/publisher/actions/JREActionTest.java
index 0fdb6488c..3b7990d22 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/publisher/actions/JREActionTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/publisher/actions/JREActionTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2017 Code 9 and others. All rights reserved. This
+ * Copyright (c) 2008, 2018 Code 9 and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
@@ -102,7 +102,7 @@ public class JREActionTest extends ActionTest {
performAction(new JREAction("OSGi/Minimum-1.2"));
Version jreVersion = Version.create("1.2.0");
- verifyMetadataIU("a.jre.osgi.minimum", 1, 3, jreVersion);
+ verifyMetadataIU("a.jre.osgi.minimum", 16, 3, jreVersion);
// verifyConfigIU("a.jre.osgi.minimum", jreVersion); // TODO config IU is not needed!?
}
@@ -129,7 +129,7 @@ public class JREActionTest extends ActionTest {
performAction(new JREAction((String) null));
// these assertions need to be changed each time the default java profile, hardcoded in o.e.e.p2.publisher.actions.JREAction, is changed;
- verifyMetadataIU("a.jre.javase", 158, 12, Version.parseVersion("1.6"));
+ verifyMetadataIU("a.jre.javase", 210, 12, Version.parseVersion("1.6"));
// verifyConfigIU(DEFAULT_JRE_NAME, DEFAULT_JRE_VERSION); // TODO config IU is not needed!?
}

Back to the top