diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-08 11:26:59 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-08 11:26:59 -0700 |
commit | 7ab97439c5a90f9ab55f489719229a6cdcf85310 (patch) | |
tree | f556256a346670431ab87e357ba8ed22ebe17b66 /tests/util.py | |
parent | 49ae00822c910f62462fd881b1161bb8178b637d (diff) | |
parent | a0f854d17fc59f0279d4d2b07d3fd810dfb1894e (diff) |
Merge branch 'master' into 373-int
Conflicts:
paramiko/channel.py
Diffstat (limited to 'tests/util.py')
-rw-r--r-- | tests/util.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/util.py b/tests/util.py index 66d2696c..b546a7e1 100644 --- a/tests/util.py +++ b/tests/util.py @@ -1,17 +1,7 @@ import os -import unittest root_path = os.path.dirname(os.path.realpath(__file__)) - -class ParamikoTest(unittest.TestCase): - # for Python 2.3 and below - if not hasattr(unittest.TestCase, 'assertTrue'): - assertTrue = unittest.TestCase.failUnless - if not hasattr(unittest.TestCase, 'assertFalse'): - assertFalse = unittest.TestCase.failIf - - def test_path(filename): return os.path.join(root_path, filename) |