diff options
Diffstat (limited to 'server/src/test/java/com/vaadin/ui/ComboBoxTest.java')
-rw-r--r-- | server/src/test/java/com/vaadin/ui/ComboBoxTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/test/java/com/vaadin/ui/ComboBoxTest.java b/server/src/test/java/com/vaadin/ui/ComboBoxTest.java index 31ff6fda5a..ee88544305 100644 --- a/server/src/test/java/com/vaadin/ui/ComboBoxTest.java +++ b/server/src/test/java/com/vaadin/ui/ComboBoxTest.java @@ -30,7 +30,7 @@ public class ComboBoxTest { // Reset value whenever it changes (in a real case, this listener would // do something with the selected value before discarding it) - comboBox.addValueChangeListener(e -> comboBox.setValue(null)); + comboBox.addValueChangeListener(event -> comboBox.setValue(null)); // "Attach" the component and initialize diffstate new MockUI().setContent(comboBox); |