summaryrefslogtreecommitdiffhomepage
path: root/tests/test_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_client.py')
-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)