diff options
author | Denis Anisimov <denis@vaadin.com> | 2014-09-26 20:44:32 +0300 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-10-13 09:54:56 +0300 |
commit | b3de415c25f89b7a23d977caa47bc7fafa3344ed (patch) | |
tree | 1937d24fb57885205fdfe1e684b1b84172ebeb1b /uitest | |
parent | fbdbd0cf1e078034890fdd75379716648af1706c (diff) | |
download | vaadin-framework-b3de415c25f89b7a23d977caa47bc7fafa3344ed.tar.gz vaadin-framework-b3de415c25f89b7a23d977caa47bc7fafa3344ed.zip |
Read input stream logic is corrected (#14533).
Change-Id: I1a8a895d631889e04f7acbde29306e86da344a23
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/combobox/ComboBoxInputPromptTest.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/uitest/src/com/vaadin/tests/components/combobox/ComboBoxInputPromptTest.java b/uitest/src/com/vaadin/tests/components/combobox/ComboBoxInputPromptTest.java index cbd83c5734..1e6f7e4170 100644 --- a/uitest/src/com/vaadin/tests/components/combobox/ComboBoxInputPromptTest.java +++ b/uitest/src/com/vaadin/tests/components/combobox/ComboBoxInputPromptTest.java @@ -18,16 +18,13 @@ package com.vaadin.tests.components.combobox; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.isEmptyString; -import static org.junit.Assert.assertEquals; -import com.vaadin.testbench.elements.ButtonElement; -import com.vaadin.testbench.elements.ComboBoxElement; -import com.vaadin.testbench.elements.TextFieldElement; -import com.vaadin.tests.tb3.AbstractTB3Test; import org.junit.Test; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; +import com.vaadin.testbench.elements.ButtonElement; +import com.vaadin.testbench.elements.ComboBoxElement; import com.vaadin.tests.tb3.MultiBrowserTest; public class ComboBoxInputPromptTest extends MultiBrowserTest { |