]> source.dussan.org Git - vaadin-framework.git/commitdiff
Set fields to Immidiate in ComboFocusBlurEvents test.
authorJohn Alhroos <john.ahlroos@itmill.com>
Thu, 3 Mar 2011 14:13:57 +0000 (14:13 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Thu, 3 Mar 2011 14:13:57 +0000 (14:13 +0000)
svn changeset:17579/svn branch:6.5

tests/src/com/vaadin/tests/components/combobox/ComboFocusBlurEvents.java

index 17737e2c703b9df308f9f184fce198cf121d694c..6681342ea6d33002c2a27185c7edefda2132a5bf 100644 (file)
@@ -25,6 +25,7 @@ public class ComboFocusBlurEvents extends TestBase {
         }
         
         ComboBox cb = new ComboBox("Combobox", list);
+        cb.setImmediate(true);
         cb.setInputPrompt("Enter text");
         cb.setDescription("Some Combobox");
         addComponent(cb);
@@ -47,7 +48,9 @@ public class ComboFocusBlurEvents extends TestBase {
             }
         });
         
-        addComponent(new TextField("Some textfield"));
+        TextField field = new TextField("Some textfield");
+        field.setImmediate(true);
+        addComponent(field);
 
         Label output = new Label(log);
         output.setCaption("Events:");