Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.uml2.tests/src/org/eclipse/emf/compare/uml2/tests/profiles/StaticProfileTest.java')
-rw-r--r--plugins/org.eclipse.emf.compare.uml2.tests/src/org/eclipse/emf/compare/uml2/tests/profiles/StaticProfileTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.compare.uml2.tests/src/org/eclipse/emf/compare/uml2/tests/profiles/StaticProfileTest.java b/plugins/org.eclipse.emf.compare.uml2.tests/src/org/eclipse/emf/compare/uml2/tests/profiles/StaticProfileTest.java
index a6ab510dd..7f2ea7f67 100644
--- a/plugins/org.eclipse.emf.compare.uml2.tests/src/org/eclipse/emf/compare/uml2/tests/profiles/StaticProfileTest.java
+++ b/plugins/org.eclipse.emf.compare.uml2.tests/src/org/eclipse/emf/compare/uml2/tests/profiles/StaticProfileTest.java
@@ -218,11 +218,11 @@ public class StaticProfileTest extends AbstractStaticProfileTest {
assertEquals(1, count(differences, instanceOf(ProfileApplicationChange.class)));
Diff addUMLProfileApplication = null;
if (kind.equals(TestKind.ADD)) {
- addUMLProfileApplication = Iterators.find(differences.iterator(), and(
- instanceOf(ProfileApplicationChange.class), ofKind(DifferenceKind.ADD)));
+ addUMLProfileApplication = Iterators.find(differences.iterator(),
+ and(instanceOf(ProfileApplicationChange.class), ofKind(DifferenceKind.ADD)));
} else {
- addUMLProfileApplication = Iterators.find(differences.iterator(), and(
- instanceOf(ProfileApplicationChange.class), ofKind(DifferenceKind.DELETE)));
+ addUMLProfileApplication = Iterators.find(differences.iterator(),
+ and(instanceOf(ProfileApplicationChange.class), ofKind(DifferenceKind.DELETE)));
}
assertNotNull(addUMLProfileApplication);
assertEquals(4, addUMLProfileApplication.getRefinedBy().size());

Back to the top