]> source.dussan.org Git - vaadin-framework.git/commitdiff
TextField -> TextArea
authorArtur Signell <artur@vaadin.com>
Tue, 20 Dec 2011 14:36:54 +0000 (16:36 +0200)
committerArtur Signell <artur@vaadin.com>
Wed, 21 Dec 2011 07:10:43 +0000 (09:10 +0200)
tests/testbench/com/vaadin/tests/components/tabsheet/VerticalScrollbarPosition.java

index b6e00a1e59f2d0d80bb16def8f4ab97c07b91314..52b94484254d87dbe5b7184c45f1f8248558f179 100644 (file)
@@ -3,7 +3,6 @@ package com.vaadin.tests.components.tabsheet;
 import com.vaadin.tests.components.TestBase;\r
 import com.vaadin.ui.TabSheet;\r
 import com.vaadin.ui.TextArea;\r
-import com.vaadin.ui.TextField;\r
 \r
 public class VerticalScrollbarPosition extends TestBase {\r
 \r
@@ -28,9 +27,9 @@ public class VerticalScrollbarPosition extends TestBase {
         tf.setWidth("200px");\r
         tabsheet.addTab(\r
                 tf,\r
-                "A text field that is 200px wide, the tab bar for the tabsheet is wider",\r
+                "A text area that is 200px wide, the tab bar for the tabsheet is wider",\r
                 null);\r
-        TextField tf2 = new TextField("Another tab", "b");\r
+        TextArea tf2 = new TextArea("Another tab", "b");\r
         tf2.setWidth("1000px");\r
         tf2.setHeight("50px");\r
         tabsheet.addTab(tf2);\r