Browse Source

Use fixed width in integration test for stability (#9560)

Fix table width to match the reference screenshot.
tags/8.1.0.beta3
Henri Sara 6 years ago
parent
commit
8883029639

+ 1
- 0
test/servlet-containers/generic/src/main/java/com/vaadin/tests/integration/ServletIntegrationUI.java View File

@@ -32,6 +32,7 @@ public class ServletIntegrationUI extends UI {
table.setSelectable(true);
table.setVisibleColumns(new Object[] { "country" });
layout.addComponent(table);
table.setWidth("112px");

Item item = table.addItem("FI");
item.getItemProperty("icon").setValue(new ClassResource("fi.gif"));

Loading…
Cancel
Save