Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTestSuite.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTestSuite.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTestSuite.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTestSuite.java
index 1a19794876..dbd7c9e466 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTestSuite.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTestSuite.java
@@ -101,7 +101,7 @@ public abstract class ConfigTestSuite implements IConstants
for (Iterator<Class<?>> it = bundle.getClasses(); it.hasNext();)
{
Class<?> c = it.next();
- if (ConfigTest.class.isAssignableFrom(c) && c.getName().startsWith(packageName))
+ if (ConfigTest.class.isAssignableFrom(c) && c.getName().startsWith(packageName + ".Bugzilla_4"))
{
@SuppressWarnings("unchecked")
Class<? extends ConfigTest> configTest = (Class<? extends ConfigTest>)c;

Back to the top