commit | bae59b5c2f39c48efd4106c03b68977063eccf05 | [log] [tgz] |
---|---|---|
author | Sam Davis <sam.davis@tasktop.com> | Fri Oct 23 16:27:40 2015 -0700 |
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | Fri Oct 30 12:39:12 2015 -0400 |
tree | 168cf861783f8b35935b55cccd982ed04494c0aa | |
parent | db8d063b35f68667dbe6e3014e0f52fe46158c4e [diff] |
testGetRuntimeVersion should pass on Java 8 Change-Id: Ia24323aa748963f7504125f575854f08eb20c809
diff --git a/org.eclipse.mylyn.commons.notifications.tests/src/org/eclipse/mylyn/commons/notifications/tests/core/NotificationEnvironmentTest.java b/org.eclipse.mylyn.commons.notifications.tests/src/org/eclipse/mylyn/commons/notifications/tests/core/NotificationEnvironmentTest.java index 1c7757b..581fa3d 100644 --- a/org.eclipse.mylyn.commons.notifications.tests/src/org/eclipse/mylyn/commons/notifications/tests/core/NotificationEnvironmentTest.java +++ b/org.eclipse.mylyn.commons.notifications.tests/src/org/eclipse/mylyn/commons/notifications/tests/core/NotificationEnvironmentTest.java
@@ -86,8 +86,8 @@ public void testGetRuntimeVersion() { Version runtimeVersion = environment.getRuntimeVersion(); - assertTrue("Expected value between 1.5-1.8, got " + runtimeVersion, - new VersionRange("[1.5.0,1.8.0)").isIncluded(runtimeVersion)); + assertTrue("Expected value between 1.5-1.9, got " + runtimeVersion, + new VersionRange("[1.5.0,1.9.0)").isIncluded(runtimeVersion)); } public void testGetPlatformVersion() {