[465975] JSPJavaTranslatorCoreTest Junit failure in WTP builds
    Additional test plug-in version increment
diff --git a/tests/org.eclipse.jst.jsp.ui.tests/META-INF/MANIFEST.MF b/tests/org.eclipse.jst.jsp.ui.tests/META-INF/MANIFEST.MF
index c737856..6d64045 100644
--- a/tests/org.eclipse.jst.jsp.ui.tests/META-INF/MANIFEST.MF
+++ b/tests/org.eclipse.jst.jsp.ui.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %Bundle-Name.0
 Bundle-SymbolicName: org.eclipse.jst.jsp.ui.tests; singleton:=true
-Bundle-Version: 1.0.700.qualifier
+Bundle-Version: 1.0.800.qualifier
 Bundle-ClassPath: jspuitests.jar
 Bundle-Activator: org.eclipse.jst.jsp.ui.tests.JSPUITestsPlugin
 Bundle-Vendor: %Bundle-Vendor.0
diff --git a/tests/org.eclipse.jst.jsp.ui.tests/pom.xml b/tests/org.eclipse.jst.jsp.ui.tests/pom.xml
index 9628d44..6631629 100644
--- a/tests/org.eclipse.jst.jsp.ui.tests/pom.xml
+++ b/tests/org.eclipse.jst.jsp.ui.tests/pom.xml
@@ -22,7 +22,7 @@
 
   <groupId>org.eclipse.webtools.sourceediting</groupId>
   <artifactId>org.eclipse.jst.jsp.ui.tests</artifactId>
-  <version>1.0.700-SNAPSHOT</version>
+  <version>1.0.800-SNAPSHOT</version>
   <packaging>eclipse-test-plugin</packaging>
 
   <properties>
diff --git a/tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/translation/JSTranslationEditorInput.java b/tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/translation/JSTranslationEditorInput.java
index 4abf0ee..16102b3 100644
--- a/tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/translation/JSTranslationEditorInput.java
+++ b/tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/translation/JSTranslationEditorInput.java
@@ -1,5 +1,5 @@
 /*******************************************************************************

- * Copyright (c) 2008 IBM Corporation and others.

+ * Copyright (c) 2008, 2015 IBM Corporation 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

@@ -63,7 +63,7 @@
 		 * @see org.eclipse.core.resources.IStorage#getFullPath()

 		 */

 		public IPath getFullPath() {

-			return new Path(fTranslation.getJavaPath());

+			return new Path(fBaseLocation + ".js"); //$NON-NLS-1$

 		}

 

 		/*

@@ -72,7 +72,7 @@
 		 * @see org.eclipse.core.resources.IStorage#getName()

 		 */

 		public String getName() {

-			return new Path(fBaseLocation).lastSegment() + ".js";

+			return new Path(fBaseLocation + ".js").lastSegment(); //$NON-NLS-1$

 		}

 

 		/*

@@ -81,7 +81,7 @@
 		 * @see org.eclipse.core.resources.IStorage#isReadOnly()

 		 */

 		public boolean isReadOnly() {

-			return false;

+			return true;

 		}

 	}