diff options
author | John Ahlroos <john@vaadin.com> | 2013-02-20 12:43:22 +0200 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2013-02-20 12:44:54 +0200 |
commit | 092edcce873b5c88790025c95777909c2445b076 (patch) | |
tree | 8d575158f3ec57db86e952977419c3519eb64101 /uitest/src | |
parent | 2788b5192330a8ac8169571b592be33972c3b016 (diff) | |
download | vaadin-framework-092edcce873b5c88790025c95777909c2445b076.tar.gz vaadin-framework-092edcce873b5c88790025c95777909c2445b076.zip |
Updated merged 6.8 test to work with 7.0
Change-Id: I5e44183af9431ba34fb0ecaa353e6b65c2aaeace
Diffstat (limited to 'uitest/src')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.html | 2 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.html b/uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.html index 45c7e0f2c8..3086b66dfa 100644 --- a/uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.html +++ b/uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.html @@ -38,7 +38,7 @@ </tr> <tr> <td>mouseClick</td> - <td>vaadin=runcomvaadintestscomponentstextfieldTextFieldMaxLengthRemovedFromDOM::/VVerticalLayout[0]/domChild[0]/domChild[1]</td> + <td>vaadin=runcomvaadintestscomponentstextfieldTextFieldMaxLengthRemovedFromDOM::/VVerticalLayout[0]/domChild[0]</td> <td>172,60</td> </tr> <tr> diff --git a/uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.java b/uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.java index 61993de107..28ff20c174 100644 --- a/uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.java +++ b/uitest/src/com/vaadin/tests/components/textfield/TextFieldMaxLengthRemovedFromDOM.java @@ -15,7 +15,7 @@ public class TextFieldMaxLengthRemovedFromDOM extends TestBase { tf.setImmediate(true); addComponent(tf); - tf.addListener(new FieldEvents.FocusListener() { + tf.addFocusListener(new FieldEvents.FocusListener() { public void focus(FocusEvent event) { // Resetting Max length should not remove maxlength attribute |