summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Dahlström <johannes.dahlstrom@vaadin.com>2012-05-31 09:47:53 +0000
committerJohannes Dahlström <johannes.dahlstrom@vaadin.com>2012-05-31 09:47:53 +0000
commit6f729f5d55cdfb719e8de835d4c713225bfd7ef2 (patch)
tree986f4fa5cdb5c303aed7466b2dd2d959e7d3742f
parent35973ebe675b8914f35e672b95b07be988fdc9e5 (diff)
downloadvaadin-framework-6f729f5d55cdfb719e8de835d4c713225bfd7ef2.tar.gz
vaadin-framework-6f729f5d55cdfb719e8de835d4c713225bfd7ef2.zip
#7495 Fixed Tables test to use the inverted API naming
svn changeset:23862/svn branch:6.8
-rw-r--r--tests/testbench/com/vaadin/tests/components/table/Tables.java10
1 files 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<T extends Table> extends AbstractSelectTestCase<T>
}
};
- private Command<T, Boolean> columnNonCollapsibleCommand = new Command<T, Boolean>() {
+ private Command<T, Boolean> columnCollapsibleCommand = new Command<T, Boolean>() {
- 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<T extends Table> extends AbstractSelectTestCase<T>
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)