From c957753646e02cd09d3f24d2b92c8adff07805ca Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 21 Aug 2008 07:04:51 +0000 Subject: [PATCH] Fixed #1995 testcase svn changeset:5230/svn branch:trunk --- src/com/itmill/toolkit/tests/tickets/Ticket1995.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/com/itmill/toolkit/tests/tickets/Ticket1995.java b/src/com/itmill/toolkit/tests/tickets/Ticket1995.java index f0bed02564..116b35ffee 100644 --- a/src/com/itmill/toolkit/tests/tickets/Ticket1995.java +++ b/src/com/itmill/toolkit/tests/tickets/Ticket1995.java @@ -22,9 +22,9 @@ public class Ticket1995 extends Application { table.addContainerProperty(PROPERTY_1, String.class, ""); table.setPageLength(4); - Item item = table.addItem(1); + Item item = table.addItem("1"); item.getItemProperty(PROPERTY_1).setValue("Row 1"); - item = table.addItem(2); + item = table.addItem("2"); item.getItemProperty(PROPERTY_1).setValue("Row 2"); Filterable filterable = (Container.Filterable) table @@ -47,7 +47,6 @@ public class Ticket1995 extends Application { Filterable filterable = (Container.Filterable) table .getContainerDataSource(); - filterable.removeAllContainerFilters(); Item i = table.addItem("abc"); String res = ""; if (i == null) { -- 2.39.5