Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2009-04-29 16:56:14 +0000
committerJohn Arthorne2009-04-29 16:56:14 +0000
commitb64fe1aebd2e4c1bec4bb93c28766b675780e7ed (patch)
treed5047812ca45cbbe30bfa038cd391bee1ddd573f /bundles/org.eclipse.equinox.p2.tests/src/org
parentf8b88d1e7157a0e440a89afb17e547fbd3833f3c (diff)
downloadrt.equinox.p2-b64fe1aebd2e4c1bec4bb93c28766b675780e7ed.tar.gz
rt.equinox.p2-b64fe1aebd2e4c1bec4bb93c28766b675780e7ed.tar.xz
rt.equinox.p2-b64fe1aebd2e4c1bec4bb93c28766b675780e7ed.zip
Bug 274219 Abstract simple configurator test looks for Manifest.MF instead of MANIFEST.MFv20090429-1300b
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java
index d76142885..736bbd671 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java
@@ -133,7 +133,7 @@ public abstract class AbstractSimpleConfiguratorTest extends AbstractProvisionin
try {
String value = null;
if (bundleFile.isDirectory()) {
- File m = new File(bundleFile, "META-INF/Manifest.MF");
+ File m = new File(bundleFile, "META-INF/MANIFEST.MF");
InputStream os;
os = new FileInputStream(m);
Manifest mf;

Back to the top