Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2017-05-10 10:21:46 +0000
committerJay Arthanareeswaran2017-05-10 10:21:46 +0000
commitec68d4e81079e41fe140afad91cbb6a0d82b561e (patch)
tree26cbfdb727f86a89c59a3fadc89fa82acc68f84a
parent3f683488a06718d3be22db52402d5c11c9d2eaed (diff)
downloadeclipse.jdt.core-ec68d4e81079e41fe140afad91cbb6a0d82b561e.tar.gz
eclipse.jdt.core-ec68d4e81079e41fe140afad91cbb6a0d82b561e.tar.xz
eclipse.jdt.core-ec68d4e81079e41fe140afad91cbb6a0d82b561e.zip
Bug 516401 - [tests] FactoryPathTests.testAddRemoveWorkspaceJar failingS4_7_0_M7I20170514-2000I20170514-1120I20170512-0500I20170511-1200I20170510-2000
Change-Id: I0907446abf32ce84482a1451e479c3ccd77e22e0 Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
-rw-r--r--org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/FactoryPathTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/FactoryPathTests.java b/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/FactoryPathTests.java
index b92a4feca1..5ce02a803c 100644
--- a/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/FactoryPathTests.java
+++ b/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/FactoryPathTests.java
@@ -108,7 +108,7 @@ public class FactoryPathTests extends TestCase {
// Will throw an exception if the newly added jar isn't first
WkspJarFactoryContainer fc = (WkspJarFactoryContainer) path.getAllContainers().keySet().iterator().next();
- assertTrue(fc.getJarFile().toString().endsWith(toAdd.toString()));
+ assertTrue(fc.getJarFile().toString().endsWith(toAdd.toOSString()));
path.removeWkspJar(toAdd);

Back to the top