Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Redor2017-12-11 07:47:28 +0000
committerLaurent Redor2017-12-11 07:49:15 +0000
commit3fc51ef58507803d759b21668b1a824729b3b01f (patch)
treea0f3a885c63cf69b1786d7f1ba1c3423faf9fb7f
parent16b01d28a09a86886d1645546179dcca27f32536 (diff)
downloadorg.eclipse.sirius-3fc51ef58507803d759b21668b1a824729b3b01f.tar.gz
org.eclipse.sirius-3fc51ef58507803d759b21668b1a824729b3b01f.tar.xz
org.eclipse.sirius-3fc51ef58507803d759b21668b1a824729b3b01f.zip
[525933] Adapt ContainerDropPropertySectionsTests
Adapt org.eclipse.sirius.tests.swtbot.editor.vsm.ContainerDropPropertySectionsTests.testContainersReferences() according to data changes of commit 9a042693 [1]. [1] http://git.eclipse.org/c/sirius/org.eclipse.sirius.git/commit/?id=9a042693b965e5db6aa31dea04aa3a2dc6245195 Bug: 525933 Change-Id: Ie0a545c5b6b8a46f569e8d9b82e93d441515d3a5 Signed-off-by: Laurent Redor <laurent.redor@obeo.fr>
-rw-r--r--plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/editor/vsm/ContainerDropPropertySectionsTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/editor/vsm/ContainerDropPropertySectionsTests.java b/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/editor/vsm/ContainerDropPropertySectionsTests.java
index afeecefef7..c8d0efd358 100644
--- a/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/editor/vsm/ContainerDropPropertySectionsTests.java
+++ b/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/editor/vsm/ContainerDropPropertySectionsTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2016 Obeo.
+ * Copyright (c) 2016, 2017 Obeo.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -97,7 +97,7 @@ public class ContainerDropPropertySectionsTests extends AbstractContentAssistTes
SWTBotShell appliedOnSelectorShell = bot.activeShell();
SWTBot appliedOnSelectorShellBot = appliedOnSelectorShell.bot();
SWTBotTable table1 = appliedOnSelectorShellBot.table(0);
- assertEquals("The left containers selection table does not contains all elements it should.", 13, table1.rowCount());
+ assertEquals("The left containers selection table does not contains all elements it should.", 16, table1.rowCount());
SWTBotTable table2 = appliedOnSelectorShellBot.table(1);
assertEquals("The right containers selection table does not contains all elements it should.", 2, table2.rowCount());
assertEquals(GROUP_NAME + QUALIFIED_NAME_SEPARATOR + VIEWPOINT_NAME + QUALIFIED_NAME_SEPARATOR + DIAGRAM_DESCRIPTION_NAME1, table1.getTableItem(1).getText());

Back to the top