diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-16 09:56:43 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-16 09:56:43 -0700 |
commit | a46ea81491b23af642247559da9e72fab472767d (patch) | |
tree | dbda2ad1c8ddcd839ca95ca51466fa3221169f5f /tests/test_client.py | |
parent | 56a4739923a356ff5670b4620139ca55a2f30148 (diff) |
Added a comment; used a keyword argument, added pypy to travis
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index b585fa0f..49f2a64a 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -290,7 +290,8 @@ class SSHClientTest (unittest.TestCase): del self.tc # force a collection to see whether the SSHClient object is deallocated - # correctly + # correctly; 3 GCs are needed to make sure it's really collected on + # PyPy gc.collect() gc.collect() gc.collect() |