summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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) {