From: Teemu Suo-Anttila Date: Thu, 26 Nov 2015 08:41:12 +0000 (+0200) Subject: Use wider age column in GridThemeUI X-Git-Tag: 7.6.0.beta2~19 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0eb628aa8f9305a3d475c0e570abdbd0a2eacd6a;p=vaadin-framework.git 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 --- 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();