diff options
author | Tomi Virtanen <tltv@vaadin.com> | 2014-01-15 10:39:02 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-01-15 09:02:53 +0000 |
commit | b9a6a48ab6ce9e3c7d8d025520e866643d19c004 (patch) | |
tree | dc1005f512e56a5967ca2212d5d7f5760b5ad882 /uitest | |
parent | 857de0f2f3964f4459b665d1928641c1689ccd37 (diff) | |
download | vaadin-framework-b9a6a48ab6ce9e3c7d8d025520e866643d19c004.tar.gz vaadin-framework-b9a6a48ab6ce9e3c7d8d025520e866643d19c004.zip |
Update textbox when Select item caption changes (#9250)
Fixed logic that detects changed item caption and triggers update to
textbox text. Changed test case description.
Change-Id: I9fbb0cc686e73404bab8e624a5332644cca53737
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/select/SelectItemCaptionRefresh.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/select/SelectItemCaptionRefresh.java b/uitest/src/com/vaadin/tests/components/select/SelectItemCaptionRefresh.java index 1a1a8fa642..de068ed230 100644 --- a/uitest/src/com/vaadin/tests/components/select/SelectItemCaptionRefresh.java +++ b/uitest/src/com/vaadin/tests/components/select/SelectItemCaptionRefresh.java @@ -49,7 +49,7 @@ public class SelectItemCaptionRefresh extends AbstractTestUI { select.setItemCaption(itemId, "start"); addComponent(select); - addComponent(new Button("click", clickListener)); + addComponent(new Button("Update item's caption", clickListener)); } /* @@ -59,7 +59,7 @@ public class SelectItemCaptionRefresh extends AbstractTestUI { */ @Override protected String getTestDescription() { - return "Selected option not updated when item caption changes in Select"; + return "Selected option should be updated when item caption changes in the Select."; } /* |