From 6f729f5d55cdfb719e8de835d4c713225bfd7ef2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johannes=20Dahlstr=C3=B6m?= Date: Thu, 31 May 2012 09:47:53 +0000 Subject: [PATCH] #7495 Fixed Tables test to use the inverted API naming svn changeset:23862/svn branch:6.8 --- .../com/vaadin/tests/components/table/Tables.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/testbench/com/vaadin/tests/components/table/Tables.java b/tests/testbench/com/vaadin/tests/components/table/Tables.java index 5c55ea87b2..9d409c5df8 100644 --- a/tests/testbench/com/vaadin/tests/components/table/Tables.java +++ b/tests/testbench/com/vaadin/tests/components/table/Tables.java @@ -73,10 +73,10 @@ public class Tables extends AbstractSelectTestCase } }; - private Command columnNonCollapsibleCommand = new Command() { + private Command columnCollapsibleCommand = new Command() { - public void execute(T c, Boolean noncollapsible, Object propertyId) { - c.setColumnNoncollapsible(propertyId, noncollapsible); + public void execute(T c, Boolean collapsible, Object propertyId) { + c.setColumnCollapsible(propertyId, collapsible); } }; @@ -652,8 +652,8 @@ public class Tables extends AbstractSelectTestCase createSelectAction("Expand ratio", category, expandOptions, "- remove -", columnExpandRatioCommand, propertyId); t.log("Expand"); - createBooleanAction("Noncollapsible", category, false, - columnNonCollapsibleCommand, propertyId); + createBooleanAction("Collapsible", category, true, + columnCollapsibleCommand, propertyId); // Footer text (move) // Header text (move) -- 2.39.5