From: Artur Signell Date: Fri, 23 Dec 2011 07:32:53 +0000 (+0200) Subject: Fixed incorrect type (int vs String) X-Git-Tag: 7.0.0.alpha1^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b5b1e56e9516ed312beef68386c97f4d76f24d4b;p=vaadin-framework.git Fixed incorrect type (int vs String) --- diff --git a/tests/testbench/com/vaadin/tests/integration/LiferayThemeDemo.java b/tests/testbench/com/vaadin/tests/integration/LiferayThemeDemo.java index 0900bc0b56..49c1e5eeb5 100644 --- a/tests/testbench/com/vaadin/tests/integration/LiferayThemeDemo.java +++ b/tests/testbench/com/vaadin/tests/integration/LiferayThemeDemo.java @@ -379,7 +379,7 @@ public class LiferayThemeDemo extends Application.LegacyApplication { int sum = 0; for (int j = 0; j < 100; j++) { - t.addItem(new Object[] { j, "Bar value " + j, + t.addItem(new Object[] { "" + j, "Bar value " + j, "Last column value " + j, new TextField() }, j); sum += j; }