summaryrefslogtreecommitdiffhomepage
path: root/tests/test_util.py
diff options
context:
space:
mode:
authorOlle Lundberg <geek@nerd.sh>2014-08-15 15:33:25 +0200
committerOlle Lundberg <geek@nerd.sh>2014-08-15 15:33:25 +0200
commit163caabf5e4a2a63216c2192dc476d4184ab81b3 (patch)
tree9576384876f2917a3e5119082f04f5a73c2d7105 /tests/test_util.py
parent888c17a9c4e8d8b1460aa42197803501a04091b4 (diff)
Remove all occurences of ParamikoTest.
Sorry paramiko, it's time to put on the big boy pants. You no longer support old as hell versions of python.
Diffstat (limited to 'tests/test_util.py')
-rw-r--r--tests/test_util.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index 69c75518..643d9171 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -24,13 +24,12 @@ from binascii import hexlify
import errno
import os
from hashlib import sha1
+import unittest
import paramiko.util
from paramiko.util import lookup_ssh_host_config as host_config
from paramiko.py3compat import StringIO, byte_ord
-from tests.util import ParamikoTest
-
test_config_file = """\
Host *
User robey
@@ -60,7 +59,7 @@ BGQ3GQ/Fc7SX6gkpXkwcZryoi4kNFhHu5LvHcZPdxXV1D+uTMfGS1eyd2Yz/DoNWXNAl8TI0cAsW\
from paramiko import *
-class UtilTest(ParamikoTest):
+class UtilTest(unittest.TestCase):
def test_1_import(self):
"""
verify that all the classes can be imported from paramiko.