[nobug] fix testGetJavaScriptLikeExtensions01 and testGetJavaScriptLikeExtensions02
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/src/org/eclipse/wst/jsdt/core/tests/model/JavaScriptLikeExtensionsTests.java b/tests/org.eclipse.wst.jsdt.core.tests.model/src/org/eclipse/wst/jsdt/core/tests/model/JavaScriptLikeExtensionsTests.java
index 35b294e..90706be 100644
--- a/tests/org.eclipse.wst.jsdt.core.tests.model/src/org/eclipse/wst/jsdt/core/tests/model/JavaScriptLikeExtensionsTests.java
+++ b/tests/org.eclipse.wst.jsdt.core.tests.model/src/org/eclipse/wst/jsdt/core/tests/model/JavaScriptLikeExtensionsTests.java
@@ -37,8 +37,11 @@
 	 * Ensures that the known JavaScript-like extensions are correct.
 	 */
 	public void testGetJavaScriptLikeExtensions01() {
+		// this test plug-in now contributes two for another test
 		assertSortedStringsEqual(
 			"Unexpected file extensions",
+			"bar\n"+
+			"foo\n"+
 			"js\n",
 			JavaScriptCore.getJavaScriptLikeExtensions()
 		);
@@ -54,7 +57,9 @@
 				javaContentType.addFileSpec("abc", IContentType.FILE_EXTENSION_SPEC);
 			assertSortedStringsEqual(
 				"Unexpected file extensions",
-				"abc\n" + 
+				"abc\n"+
+				"bar\n"+
+				"foo\n"+
 				"js\n",
 				JavaScriptCore.getJavaScriptLikeExtensions()
 			);