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() {