[544796] Use correct model path for compatibility execute command
diff --git a/tests/org.eclipse.ocl.examples.xtext.tests/src/org/eclipse/ocl/examples/test/standalone/StandaloneExecutionTests.java b/tests/org.eclipse.ocl.examples.xtext.tests/src/org/eclipse/ocl/examples/test/standalone/StandaloneExecutionTests.java
index 5b7c8cc..2d99796 100644
--- a/tests/org.eclipse.ocl.examples.xtext.tests/src/org/eclipse/ocl/examples/test/standalone/StandaloneExecutionTests.java
+++ b/tests/org.eclipse.ocl.examples.xtext.tests/src/org/eclipse/ocl/examples/test/standalone/StandaloneExecutionTests.java
@@ -316,10 +316,10 @@
 			String logFileName = getXMLLogFileName();
 			String testPath;
 			if (CGUtil.isMavenSurefire()) {
-				testPath = "../../models/standalone/EcoreTestFile.ecore#//BadClass";
+				testPath = "../../../" + PivotTestCase.PLUGIN_ID + "/models/standalone/EcoreTestFile.ecore#//BadClass";
 			}
 			else if (CGUtil.isTychoSurefire()) {
-				testPath = "models/standalone/EcoreTestFile.ecore#//BadClass";
+				testPath = "../" + PivotTestCase.PLUGIN_ID + "/models/standalone/EcoreTestFile.ecore#//BadClass";
 			}
 			else {
 				testPath = testProject.getName() + "/EcoreTestFile.ecore#//BadClass";