Bug 527861 - [9] JarSourceLookupTests.testTranslateContainers fails when
run on JDK 9

Change-Id: Ia7bfe39170514f9efdd7c17ed83cc7c705fadea9
diff --git a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java
index 6124c20..fbd275d 100644
--- a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java
+++ b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java
@@ -137,7 +137,7 @@
 		ILaunchConfiguration config = getLaunchConfiguration(fgJarProject, LAUNCHCONFIGURATIONS, A_RUN_JAR);
 		IRuntimeClasspathEntry[] entries = JavaRuntime.computeUnresolvedSourceLookupPath(config);
 		if (JavaRuntime.isModularConfiguration(config)) {
-			// JRE Container is also part of it from Java 9 onwards
+			// There is no DefaultProjectClasspath entry so 2 entries inside it becomes 2 separate entries now
 			assertEquals("There should be 3 containers returned (JRE and classpath)", 3, entries.length);
 		} else {
 			assertEquals("There should be 2 containers returned (JRE and classpath)", 2, entries.length);