diff options
Diffstat (limited to 'uitest/src')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/grid/GridThemeUI.java | 3 |
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(); |