summaryrefslogtreecommitdiff
path: root/test/base/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/base/test_utils.py')
-rw-r--r--test/base/test_utils.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/base/test_utils.py b/test/base/test_utils.py
index 7cdda0c23..e4d5a4d5f 100644
--- a/test/base/test_utils.py
+++ b/test/base/test_utils.py
@@ -188,19 +188,6 @@ class WeakSequenceTest(fixtures.TestBase):
eq_(len(w), 2)
eq_(len(w._storage), 2)
- @testing.requires.predictable_gc
- def test_cleanout_container(self):
- import weakref
-
- class Foo(object):
- pass
-
- f = Foo()
- w = WeakSequence([f])
- w_wref = weakref.ref(w)
- del w
- eq_(w_wref(), None)
-
class OrderedDictTest(fixtures.TestBase):
def test_odict(self):