aboutsummaryrefslogtreecommitdiff
path: root/tests/util.py
diff options
context:
space:
mode:
authorJeremy T. Bouse <jbouse@debian.org>2014-09-22 09:21:39 -0400
committerJeremy T. Bouse <jbouse@debian.org>2014-09-22 09:21:39 -0400
commit70f669a0a41e104bd0427e8ad9142071aae241ed (patch)
treea5c0a22c336514e1db001012a64d15477986b671 /tests/util.py
parente9306cab7448e641a54789039f5c8bfe988de320 (diff)
parentccd643cdbd7ba752727d62051058a4454451414d (diff)
downloadpython-paramiko-70f669a0a41e104bd0427e8ad9142071aae241ed.tar
python-paramiko-70f669a0a41e104bd0427e8ad9142071aae241ed.tar.gz
Merge tag 'upstream/1.15.0'
Upstream version 1.15.0
Diffstat (limited to 'tests/util.py')
-rw-r--r--tests/util.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/util.py b/tests/util.py
index 66d2696..b546a7e 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)