From 0eb628aa8f9305a3d475c0e570abdbd0a2eacd6a Mon Sep 17 00:00:00 2001 From: Teemu Suo-Anttila Date: Thu, 26 Nov 2015 10:41:12 +0200 Subject: [PATCH] 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 --- uitest/src/com/vaadin/tests/components/grid/GridThemeUI.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); -- 2.39.5