summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2014-02-26 16:27:27 +0200
committerVaadin Code Review <review@vaadin.com>2014-02-27 11:36:45 +0000
commite961d43fd319148f5ab5fab452aed932105e363a (patch)
tree1c894ac43160e81d10b14300cc816b03a7ddcfd1
parentfbce1270b1ea9260a6bb1842f5a5747d173b6f0a (diff)
downloadvaadin-framework-e961d43fd319148f5ab5fab452aed932105e363a.tar.gz
vaadin-framework-e961d43fd319148f5ab5fab452aed932105e363a.zip
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
-rw-r--r--uitest/src/com/vaadin/tests/components/calendar/CalendarActionEventSource.java5
1 files 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) {