summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-09-29 23:19:45 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-09-29 23:19:45 -0700
commit08cf9dc0d2a54e2e78509d093757dfb4a23dc4f2 (patch)
treebc9a6e961f04e175d087d1b10ccdc1842e9bd122 /tests
parentd3d816efba4798a9a81f5f0463fb2f70871644db (diff)
try with one more GC, just to see if it reproduces
Diffstat (limited to 'tests')
-rw-r--r--tests/test_client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index 12022172..a9a3a130 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -293,11 +293,12 @@ class SSHClientTest (unittest.TestCase):
del self.tc
# force a collection to see whether the SSHClient object is deallocated
- # correctly; 3 GCs are needed to make sure it's really collected on
+ # correctly; 4 GCs are needed to make sure it's really collected on
# PyPy
gc.collect()
gc.collect()
gc.collect()
+ gc.collect()
self.assertTrue(p() is None)