diff options
author | Henri Sara <henri.sara@itmill.com> | 2011-03-07 09:55:50 +0000 |
---|---|---|
committer | Henri Sara <henri.sara@itmill.com> | 2011-03-07 09:55:50 +0000 |
commit | d08aede53e72e64235d127093cb91640106e48b9 (patch) | |
tree | 91b8a3d5c77ce5a003583fa3f8c59d7952a2db1b /tests | |
parent | e2e3217ffa68806d69e180fa9e9c0ea04979400d (diff) | |
download | vaadin-framework-d08aede53e72e64235d127093cb91640106e48b9.tar.gz vaadin-framework-d08aede53e72e64235d127093cb91640106e48b9.zip |
#6527 Container refactoring: fix test for AbstractBeanContainer.getSortableContainerProperties() return type change
svn changeset:17636/svn branch:6.6
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/com/vaadin/tests/server/container/BeanItemContainerSortTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/com/vaadin/tests/server/container/BeanItemContainerSortTest.java b/tests/src/com/vaadin/tests/server/container/BeanItemContainerSortTest.java index 3679539041..8c9654709b 100644 --- a/tests/src/com/vaadin/tests/server/container/BeanItemContainerSortTest.java +++ b/tests/src/com/vaadin/tests/server/container/BeanItemContainerSortTest.java @@ -147,7 +147,7 @@ public class BeanItemContainerSortTest { public void testGetSortableProperties() { BeanItemContainer<Person> container = getContainer(); - Collection<Object> sortablePropertyIds = container + Collection<?> sortablePropertyIds = container .getSortableContainerPropertyIds(); Assert.assertEquals(2, sortablePropertyIds.size()); Assert.assertTrue(sortablePropertyIds.contains("name")); @@ -160,7 +160,7 @@ public class BeanItemContainerSortTest { Assert.assertEquals(3, container.getContainerPropertyIds().size()); - Collection<Object> sortablePropertyIds = container + Collection<?> sortablePropertyIds = container .getSortableContainerPropertyIds(); Assert.assertEquals(2, sortablePropertyIds.size()); Assert.assertTrue(sortablePropertyIds.contains("name")); |