Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2018-10-24 14:23:10 +0000
committerThomas Watson2018-10-24 14:23:10 +0000
commit378696ef2130d81eda831616f72f903542d44fbc (patch)
tree60765467c4285e356da4844575c47ba3d8f3257b
parentcc7411bd8766b368f1b027937831b673471a836e (diff)
downloadrt.equinox.framework-378696ef2130d81eda831616f72f903542d44fbc.tar.gz
rt.equinox.framework-378696ef2130d81eda831616f72f903542d44fbc.tar.xz
rt.equinox.framework-378696ef2130d81eda831616f72f903542d44fbc.zip
Remove with space from configuration folder
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/MultiReleaseJarTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/MultiReleaseJarTests.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/MultiReleaseJarTests.java
index 551546af6..0648e50ba 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/MultiReleaseJarTests.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/MultiReleaseJarTests.java
@@ -765,7 +765,7 @@ public class MultiReleaseJarTests extends AbstractBundleTests {
public void testMultiReleaseBundleManifestChangeRuntime() throws Exception {
File config = OSGiTestsActivator.getContext().getDataFile(getName()); //$NON-NLS-1$
- Map<String, String> configMap = Collections.singletonMap(Constants.FRAMEWORK_STORAGE, config.getAbsolutePath() + " with space");
+ Map<String, String> configMap = Collections.singletonMap(Constants.FRAMEWORK_STORAGE, config.getAbsolutePath());
Equinox equinox = new Equinox(configMap);
String location;
try {

Back to the top