diff options
author | John Ahlroos <john@vaadin.com> | 2012-09-05 11:14:47 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-09-05 11:14:47 +0300 |
commit | af0e1bb09fd13401e3a188eaedd5b01c6db7bf78 (patch) | |
tree | bbb42351f6409e9707192cef52b729b070984d3a /uitest | |
parent | 1074de78b5e39f46178ed4788bcdd749f11f3ada (diff) | |
download | vaadin-framework-af0e1bb09fd13401e3a188eaedd5b01c6db7bf78.tar.gz vaadin-framework-af0e1bb09fd13401e3a188eaedd5b01c6db7bf78.zip |
Fixed RichTextArea test
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/richtextarea/RichTextAreaScrolling.java | 6 |
1 files changed, 3 insertions, 3 deletions
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); |