Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvlorenzo2012-06-29 09:36:36 +0000
committervlorenzo2012-06-29 09:36:36 +0000
commit65c2f3fff027ce533c2033d9eaeb767c94fe0592 (patch)
tree8b4488e691457c205654bec33cf28cad99d675c7 /tests/junit/extraplugins/uml
parentda9f527633fe6b949d12a7840333cab5721c8069 (diff)
downloadorg.eclipse.papyrus-65c2f3fff027ce533c2033d9eaeb767c94fe0592.tar.gz
org.eclipse.papyrus-65c2f3fff027ce533c2033d9eaeb767c94fe0592.tar.xz
org.eclipse.papyrus-65c2f3fff027ce533c2033d9eaeb767c94fe0592.zip
383868: [UML Compare] Retarget for Generalization link should be done using a ReorientRelationShipRequest
https://bugs.eclipse.org/bugs/show_bug.cgi?id=383868
Diffstat (limited to 'tests/junit/extraplugins/uml')
-rw-r--r--tests/junit/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.diff.tests/src/org/eclipse/papyrus/uml/compare/diff/tests/standalone/AbstractStandaloneCompareTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/junit/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.diff.tests/src/org/eclipse/papyrus/uml/compare/diff/tests/standalone/AbstractStandaloneCompareTest.java b/tests/junit/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.diff.tests/src/org/eclipse/papyrus/uml/compare/diff/tests/standalone/AbstractStandaloneCompareTest.java
index f4118884cec..5638e5dbd5b 100644
--- a/tests/junit/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.diff.tests/src/org/eclipse/papyrus/uml/compare/diff/tests/standalone/AbstractStandaloneCompareTest.java
+++ b/tests/junit/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.diff.tests/src/org/eclipse/papyrus/uml/compare/diff/tests/standalone/AbstractStandaloneCompareTest.java
@@ -35,6 +35,7 @@ import org.eclipse.papyrus.junit.utils.PapyrusProjectUtils;
import org.eclipse.papyrus.junit.utils.ProjectUtils;
import org.eclipse.papyrus.uml.compare.diff.services.nested.UMLDiffService;
import org.eclipse.papyrus.uml.compare.diff.services.standalone.StandaloneMergeUtils;
+import org.eclipse.papyrus.uml.compare.diff.services.standalone.UMLStandaloneDiffService;
import org.eclipse.papyrus.uml.compare.diff.tests.AbstractCompareTest;
import org.eclipse.papyrus.uml.compare.diff.tests.Activator;
import org.eclipse.uml2.uml.Model;
@@ -82,7 +83,7 @@ public abstract class AbstractStandaloneCompareTest extends AbstractCompareTest
//TODO use standalone version
// Computing differences
// final DiffModel diff = DiffService.doDiff(match, false);
- final DiffModel diff = UMLDiffService.doDiff(match, false);
+ final DiffModel diff = UMLStandaloneDiffService.doDiff(match, false);
return diff;
}

Back to the top