diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-05-26 14:40:43 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-05-26 11:53:02 +0000 |
commit | 17b5b7bf508586626da48e21b9c72694f03c7ff2 (patch) | |
tree | 467dd54701b969371c1bb14b84ed08d5c9243bd4 | |
parent | 0b3af0fe74b790a5ac4159a97ccb4e5aeb8ad85c (diff) | |
download | vaadin-framework-17b5b7bf508586626da48e21b9c72694f03c7ff2.tar.gz vaadin-framework-17b5b7bf508586626da48e21b9c72694f03c7ff2.zip |
Change ColorPickerInputFormatsTest for use Keys.RETURN.
Change-Id: Ic8ad7163d35e0e1c2d44e928cd52ca66a637b7fa
-rw-r--r-- | uitest/src/com/vaadin/tests/components/colorpicker/ColorPickerInputFormatsTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/components/colorpicker/ColorPickerInputFormatsTest.java b/uitest/src/com/vaadin/tests/components/colorpicker/ColorPickerInputFormatsTest.java index 90c01116cc..096b07546a 100644 --- a/uitest/src/com/vaadin/tests/components/colorpicker/ColorPickerInputFormatsTest.java +++ b/uitest/src/com/vaadin/tests/components/colorpicker/ColorPickerInputFormatsTest.java @@ -87,7 +87,7 @@ public class ColorPickerInputFormatsTest extends MultiBrowserTest { field.sendKeys(value); // Submit - field.sendKeys(Keys.ENTER); + field.sendKeys(Keys.RETURN); } private String getColorpickerValue() { |