From: John Ahlroos Date: Wed, 5 Sep 2012 08:14:47 +0000 (+0300) Subject: Fixed RichTextArea test X-Git-Tag: 7.0.0.beta1~191^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=af0e1bb09fd13401e3a188eaedd5b01c6db7bf78;p=vaadin-framework.git Fixed RichTextArea test --- 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);