diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-30 09:23:48 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-30 09:23:48 -0700 |
commit | fb5ea3811e6cc93eb005f29e56359a80436bdd0c (patch) | |
tree | 36dea6d4500f3bc60b73ec258d6689091ec95a2f /tests | |
parent | e8f1c413895fb27fac36b648deaab96d4c20ba25 (diff) |
2 is really enough
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_client.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index 5f16e3cf..e901d737 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -291,13 +291,10 @@ class SSHClientTest (unittest.TestCase): del self.tc # force a collection to see whether the SSHClient object is deallocated - # correctly; 5 GCs are needed to make sure it's really collected on + # correctly. 2 GCs are needed to make sure it's really collected on # PyPy gc.collect() gc.collect() - gc.collect() - gc.collect() - gc.collect() self.assertTrue(p() is None) |