diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/combobox/ComboBoxDataSourceChange.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/combobox/ComboBoxDataSourceChange.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/combobox/ComboBoxDataSourceChange.java b/uitest/src/com/vaadin/tests/components/combobox/ComboBoxDataSourceChange.java index 1f2973ccb7..dea1deb9b5 100644 --- a/uitest/src/com/vaadin/tests/components/combobox/ComboBoxDataSourceChange.java +++ b/uitest/src/com/vaadin/tests/components/combobox/ComboBoxDataSourceChange.java @@ -86,8 +86,8 @@ public class ComboBoxDataSourceChange extends TestBase { cb2.addListener(new Property.ValueChangeListener() { @Override public void valueChange(ValueChangeEvent event) { - currentValue - .setValue(event.getProperty().getValue().toString()); + currentValue.setValue(String.valueOf(event.getProperty() + .getValue())); } }); } |