diff options
author | Artur Signell <artur@vaadin.com> | 2011-12-23 09:32:53 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2011-12-23 09:32:53 +0200 |
commit | b5b1e56e9516ed312beef68386c97f4d76f24d4b (patch) | |
tree | 8e4abf52532fc1982e97ea6d5ff80a84ad9c7f6e /tests | |
parent | 0d3fa9c9d9b782d8b692291bb08cbb07bfb096d7 (diff) | |
download | vaadin-framework-b5b1e56e9516ed312beef68386c97f4d76f24d4b.tar.gz vaadin-framework-b5b1e56e9516ed312beef68386c97f4d76f24d4b.zip |
Fixed incorrect type (int vs String)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testbench/com/vaadin/tests/integration/LiferayThemeDemo.java | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |