diff options
author | John Ahlroos <john@vaadin.com> | 2013-03-21 17:09:10 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-03-22 14:45:02 +0000 |
commit | 423ff03e4b5fe3a99d2e6d3603d8e58f5ca34e29 (patch) | |
tree | 9c7474c1e46c83487922cd87e745b884068fff54 /server/tests/src/com | |
parent | b247017a184dd8603ec06d1c9798f123b447a585 (diff) | |
download | vaadin-framework-423ff03e4b5fe3a99d2e6d3603d8e58f5ca34e29.tar.gz vaadin-framework-423ff03e4b5fe3a99d2e6d3603d8e58f5ca34e29.zip |
Fixed tree memory leak when removing expanded items from Tree (based on new Filterable API introduced by #11234) #11053
Change-Id: I397124cbfa355417717d2e81bf67b15b202bf16a
Diffstat (limited to 'server/tests/src/com')
-rw-r--r-- | server/tests/src/com/vaadin/tests/server/component/tree/TreeTest.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/server/tests/src/com/vaadin/tests/server/component/tree/TreeTest.java b/server/tests/src/com/vaadin/tests/server/component/tree/TreeTest.java index 634e6a86f3..a0d57c4d59 100644 --- a/server/tests/src/com/vaadin/tests/server/component/tree/TreeTest.java +++ b/server/tests/src/com/vaadin/tests/server/component/tree/TreeTest.java @@ -9,7 +9,6 @@ import java.lang.reflect.Field; import java.util.HashSet; import org.junit.Before; -import org.junit.Ignore; import org.junit.Test; import com.vaadin.data.Container; @@ -84,10 +83,6 @@ public class TreeTest { .getContainerDataSource().getClass())); } - @Ignore("This test tests that item ids which are removed are also " - + "removed from the expand list to prevent a memory leak. " - + "Fixing the memory leak cannot be done without changing some API (see #11053) " - + "so ignoring this test for the 7.0.x series.") @Test public void testRemoveExpandedItems() throws Exception { tree.expandItem("parent"); |