From: Henri Sara Date: Wed, 17 May 2017 11:09:30 +0000 (+0300) Subject: Fix tooltip test after tooltip style change X-Git-Tag: 8.1.0.beta1~39 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8677195c8773aec1777b6b0b2979fc59e377d307;p=vaadin-framework.git Fix tooltip test after tooltip style change --- diff --git a/uitest/src/main/java/com/vaadin/tests/components/menubar/MenuBarTooltipsNearEdge.java b/uitest/src/main/java/com/vaadin/tests/components/menubar/MenuBarTooltipsNearEdge.java index 31b9dd7a45..f0717bbada 100644 --- a/uitest/src/main/java/com/vaadin/tests/components/menubar/MenuBarTooltipsNearEdge.java +++ b/uitest/src/main/java/com/vaadin/tests/components/menubar/MenuBarTooltipsNearEdge.java @@ -55,10 +55,10 @@ public class MenuBarTooltipsNearEdge extends AbstractReindeerTestUI { MenuBar menu = new MenuBar(); MenuItem item = menu.addItem(label, null); - item.addItem("Item 1", null).setDescription("TOOLTIP 1"); - item.addItem("Item 2", null).setDescription("TOOLTIP 2"); - item.addItem("Item 3", null).setDescription("TOOLTIP 3"); - item.addItem("Item 4", null).setDescription("TOOLTIP 4"); + item.addItem("Item 1", null).setDescription("TOOLTIP FOR ITEM 1"); + item.addItem("Item 2", null).setDescription("TOOLTIP FOR ITEM 2"); + item.addItem("Item 3", null).setDescription("TOOLTIP FOR ITEM 3"); + item.addItem("Item 4", null).setDescription("TOOLTIP FOR ITEM 4"); return menu; }