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/bugzilla/Bugzilla_314264_Test.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_314264_Test.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_314264_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_314264_Test.java
index 7724c8c65b..fcca578eb5 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_314264_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_314264_Test.java
@@ -39,7 +39,7 @@ public class Bugzilla_314264_Test extends AbstractCDOTest
final CDOTransaction tr1 = session.openTransaction();
tr1.options().addChangeSubscriptionPolicy(CDOAdapterPolicy.ALL);
- final CDOResource resource = tr1.createResource("/test1");
+ final CDOResource resource = tr1.createResource(getResourcePath("/test1"));
TaskContainer container = getModel2Factory().createTaskContainer();
resource.getContents().add(container);
@@ -79,7 +79,7 @@ public class Bugzilla_314264_Test extends AbstractCDOTest
final CDOTransaction tr1 = session.openTransaction();
tr1.options().addChangeSubscriptionPolicy(CDOAdapterPolicy.ALL);
- final CDOResource resource = tr1.createResource("/test1");
+ final CDOResource resource = tr1.createResource(getResourcePath("/test1"));
TaskContainer container = getModel2Factory().createTaskContainer();
resource.getContents().add(container);
tr1.commit();

Back to the top