Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/edit/TestAttributeChangeItemProviderSpec.java')
-rw-r--r--plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/edit/TestAttributeChangeItemProviderSpec.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/edit/TestAttributeChangeItemProviderSpec.java b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/edit/TestAttributeChangeItemProviderSpec.java
index a24b97270..aca35ac36 100644
--- a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/edit/TestAttributeChangeItemProviderSpec.java
+++ b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/edit/TestAttributeChangeItemProviderSpec.java
@@ -33,10 +33,10 @@ public class TestAttributeChangeItemProviderSpec extends AbstractTestCompareItem
public void testGetChildren_EcoreA1() throws IOException {
Comparison comparison = getComparison(new EcoreA1InputData());
- List<AttributeChange> eAllContent_AttributeChange = newArrayList(filter(comparison.eAllContents(),
- AttributeChange.class));
- List<AttributeChange> eAllChildren_AttributeChange = newArrayList(filter(eAllChildren(comparison),
- AttributeChange.class));
+ List<AttributeChange> eAllContent_AttributeChange = newArrayList(
+ filter(comparison.eAllContents(), AttributeChange.class));
+ List<AttributeChange> eAllChildren_AttributeChange = newArrayList(
+ filter(eAllChildren(comparison), AttributeChange.class));
assertEquals(eAllContent_AttributeChange.size(), eAllChildren_AttributeChange.size());
assertTrue(eAllChildren_AttributeChange.containsAll(eAllContent_AttributeChange));

Back to the top