From 1074de78b5e39f46178ed4788bcdd749f11f3ada Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Wed, 5 Sep 2012 11:10:04 +0300 Subject: Fixed text assertions Root->UI --- uitest/src/com/vaadin/tests/application/RefreshStatePreserve.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'uitest/src/com/vaadin') diff --git a/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.html b/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.html index d48ab220b5..47e766e76a 100644 --- a/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.html +++ b/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.html @@ -19,7 +19,7 @@ assertText vaadin=runcomvaadintestsapplicationRefreshStatePreserve::/VVerticalLayout[0]/ChildComponentContainer[1]/VLabel[0] - Root id: 0 + UI id: 0 open @@ -29,7 +29,7 @@ assertText vaadin=runcomvaadintestsapplicationRefreshStatePreserve::/VVerticalLayout[0]/ChildComponentContainer[1]/VLabel[0] - Root id: 0 + UI id: 0 runScript @@ -44,7 +44,7 @@ assertText vaadin=runcomvaadintestsapplicationRefreshStatePreserve::/VVerticalLayout[0]/ChildComponentContainer[1]/VLabel[0] - Root id: 0 + UI id: 0 -- cgit v1.2.3 From af0e1bb09fd13401e3a188eaedd5b01c6db7bf78 Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Wed, 5 Sep 2012 11:14:47 +0300 Subject: Fixed RichTextArea test --- .../vaadin/tests/components/richtextarea/RichTextAreaScrolling.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'uitest/src/com/vaadin') diff --git a/uitest/src/com/vaadin/tests/components/richtextarea/RichTextAreaScrolling.java b/uitest/src/com/vaadin/tests/components/richtextarea/RichTextAreaScrolling.java index f88ed0c67c..66b5a9e08a 100644 --- a/uitest/src/com/vaadin/tests/components/richtextarea/RichTextAreaScrolling.java +++ b/uitest/src/com/vaadin/tests/components/richtextarea/RichTextAreaScrolling.java @@ -32,9 +32,9 @@ public class RichTextAreaScrolling extends TestBase { RichTextArea second = new RichTextArea("Full height"); RichTextArea third = new RichTextArea("Undefined height"); - first.setValue(sb); - second.setValue(sb); - third.setValue(sb); + first.setValue(sb.toString()); + second.setValue(sb.toString()); + third.setValue(sb.toString()); first.setReadOnly(true); second.setReadOnly(true); -- cgit v1.2.3