Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2013-06-28 20:36:52 +0000
committerJohn Arthorne2013-06-28 20:36:52 +0000
commite9f212bfe7db4f3ce5d3fd4a61c13b47500ca0a7 (patch)
treeb6ec8059a3526aeef0a6fb37076f1d3538485900 /bundles
parentd24b06045290067342e408be14f0c0629fbb1a35 (diff)
downloadrt.equinox.p2-e9f212bfe7db4f3ce5d3fd4a61c13b47500ca0a7.tar.gz
rt.equinox.p2-e9f212bfe7db4f3ce5d3fd4a61c13b47500ca0a7.tar.xz
rt.equinox.p2-e9f212bfe7db4f3ce5d3fd4a61c13b47500ca0a7.zip
Fixed test error message
Diffstat (limited to 'bundles')
-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 2c1da14f2..081c74dfa 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
@@ -50,7 +50,7 @@ public abstract class AbstractSimpleConfiguratorTest extends AbstractProvisionin
found = true;
}
if (!found)
- fail("Bundle should not be present: " + jarName);
+ fail("Bundle should be present: " + jarName);
}
}

Back to the top