Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Redor2016-08-02 10:01:17 +0000
committerLaurent Redor2016-08-03 07:08:34 +0000
commitd9849da9fee8f7b9e8bebd7b1af2b22babb1a92a (patch)
treed7ecc00e740d2981c8a7eb3fe70e7219c2c4c45f
parent540530d6871584df10a20fbd7bc6703c308ad32f (diff)
downloadorg.eclipse.sirius-d9849da9fee8f7b9e8bebd7b1af2b22babb1a92a.tar.gz
org.eclipse.sirius-d9849da9fee8f7b9e8bebd7b1af2b22babb1a92a.tar.xz
org.eclipse.sirius-d9849da9fee8f7b9e8bebd7b1af2b22babb1a92a.zip
[496466] A string has not been replaced in previous commit 47ed3d8
There is a specific test for paste layout based on the tooltip but it has not been replaced in previous commit [1]. [1] http://git.eclipse.org/c/sirius/org.eclipse.sirius.git/diff/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java?id=47ed3d8bc8438d1ed6ed77743365d6e5a53f06f2 Bug: 496466 Change-Id: I044cc2cf03139503347c67e69b4cd0343cd2e46a Signed-off-by: Laurent Redor <laurent.redor@obeo.fr>
-rw-r--r--plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java b/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java
index 397d154f94..ad557a722f 100644
--- a/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java
+++ b/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java
@@ -521,7 +521,7 @@ public class TabBarTest extends AbstractSiriusSwtBotGefTestCase {
assertEquals("The toolbarButton index " + i + " does not have the expected tooltip", expectedTooltip, editor.bot().toolbarButton(i).getToolTipText());
}
- if (expectedTooltip.equals("Paste the current recorded layout to the selected diagram")) {
+ if (expectedTooltip.equals(Messages.PasteFormatAction_toolTipText)) {
// Paste layout is not enabled if there is no previous copy
// layout.
continue;

Back to the top