diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket1581.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket1581.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket1581.java b/uitest/src/com/vaadin/tests/tickets/Ticket1581.java index 5f278a44f5..a29fba9bff 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket1581.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket1581.java @@ -35,7 +35,7 @@ public class Ticket1581 extends com.vaadin.LegacyApplication { public void run() { super.run(); while (true) { - time.setValue(new Date()); + time.setValue(new Date().toString()); try { sleep(200); } catch (InterruptedException e) { |