]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed incorrect type (int vs String)
authorArtur Signell <artur@vaadin.com>
Fri, 23 Dec 2011 07:32:53 +0000 (09:32 +0200)
committerArtur Signell <artur@vaadin.com>
Fri, 23 Dec 2011 07:32:53 +0000 (09:32 +0200)
tests/testbench/com/vaadin/tests/integration/LiferayThemeDemo.java

index 0900bc0b5655d9d41d3ed605ce68fddf27f5c59e..49c1e5eeb58429d5d250acc1e2e78d3211666857 100644 (file)
@@ -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;
         }