Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java b/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
index 12f74d9789..5356f48d77 100644
--- a/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
+++ b/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
@@ -94,7 +94,7 @@ public class AllTestsHibernate extends AllConfigs
super.initTestClasses(testClasses, scenario);
// TODO: find out why this does not work for non-auditing
- if (scenario.getRepositoryConfig().isSupportingAudits())
+ if (scenario.getRepositoryConfig().supportingAudits())
{
testClasses.add(HibernateBugzilla_380987_Test.class);
}
@@ -160,7 +160,7 @@ public class AllTestsHibernate extends AllConfigs
// TODO: research this
testClasses.remove(Bugzilla_416474_Test.class);
- if (scenario.getRepositoryConfig().isSupportingAudits())
+ if (scenario.getRepositoryConfig().supportingAudits())
{
// need to add additional auditing annotations
testClasses.remove(HibernateBugzilla_405191_Test.class);

Back to the top