From e961d43fd319148f5ab5fab452aed932105e363a Mon Sep 17 00:00:00 2001 From: Teemu Suo-Anttila Date: Wed, 26 Feb 2014 16:27:27 +0200 Subject: [PATCH] Remove tooltip that's causing CalendarAcrionEventSourceTest failures This said tooltip gets in front of the context menu and native events actually clicks on the tooltip instead of the context menu item. Change-Id: I6519ba98351a5ad03ccc35c29b85a831e3026325 --- .../tests/components/calendar/CalendarActionEventSource.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/uitest/src/com/vaadin/tests/components/calendar/CalendarActionEventSource.java b/uitest/src/com/vaadin/tests/components/calendar/CalendarActionEventSource.java index 5e81750e58..3a5d61d793 100644 --- a/uitest/src/com/vaadin/tests/components/calendar/CalendarActionEventSource.java +++ b/uitest/src/com/vaadin/tests/components/calendar/CalendarActionEventSource.java @@ -49,9 +49,8 @@ public class CalendarActionEventSource extends AbstractTestUI { CalendarEvent event = null; try { - event = new BasicEvent("NAME", "TOOLTIP", - new SimpleDateFormat("yyyy-MM-dd hh:mm") - .parse("2013-01-01 07:00"), + event = new BasicEvent("NAME", null, new SimpleDateFormat( + "yyyy-MM-dd hh:mm").parse("2013-01-01 07:00"), new SimpleDateFormat("yyyy-MM-dd hh:mm") .parse("2013-01-01 11:00")); } catch (ParseException e) { -- 2.39.5