diff options
Diffstat (limited to 'tests/test_util.py')
-rw-r--r-- | tests/test_util.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_util.py b/tests/test_util.py index 05fcc67c..bbfa8593 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -59,6 +59,9 @@ from paramiko import * class UtilTest (unittest.TestCase): + assertTrue = unittest.TestCase.failUnless # for Python 2.3 and below + assertFalse = unittest.TestCase.failIf # for Python 2.3 and below + def setUp(self): pass |