summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2015-11-26 10:41:12 +0200
committerTeemu Suo-Anttila <teemusa@vaadin.com>2015-11-26 13:09:42 +0000
commit0eb628aa8f9305a3d475c0e570abdbd0a2eacd6a (patch)
tree4aa1c2c8e3e6e4db47e8aade7f8dcd6d9ff06b1a /uitest
parent958398bc6f93df405114591ff11f76ea40bfaa0a (diff)
downloadvaadin-framework-0eb628aa8f9305a3d475c0e570abdbd0a2eacd6a.tar.gz
vaadin-framework-0eb628aa8f9305a3d475c0e570abdbd0a2eacd6a.zip
Use wider age column in GridThemeUI
This patch is to test the theme, and not testing a defect (#16597). Testing with defective screenshots causes problems if the defect is at a later point fixed. Change-Id: I3a20d0c6ab79c812752ee5d2765d91a2304e6d0e
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/components/grid/GridThemeUI.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/GridThemeUI.java b/uitest/src/com/vaadin/tests/components/grid/GridThemeUI.java
index 09685d5b4c..871d24d9ab 100644
--- a/uitest/src/com/vaadin/tests/components/grid/GridThemeUI.java
+++ b/uitest/src/com/vaadin/tests/components/grid/GridThemeUI.java
@@ -126,7 +126,8 @@ public class GridThemeUI extends AbstractTestUIWithLog {
b.setSizeFull();
row.join("address.streetAddress", "address.postalCode",
"address.city", "address.country").setComponent(b);
- getColumn("age").setWidth(25);
+ // TODO: revert back to 25 when #16597 is fixed..
+ getColumn("age").setWidth(42);
removeColumn("salary");
setEditorEnabled(true);
setSizeFull();