summaryrefslogtreecommitdiffhomepage
path: root/tests/test_transport.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_transport.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_transport.py')
-rw-r--r--tests/test_transport.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_transport.py b/tests/test_transport.py
index ac744b26..5c77a321 100644
--- a/tests/test_transport.py
+++ b/tests/test_transport.py
@@ -26,6 +26,7 @@ import socket
import time
import threading
import random
+import unittest
from paramiko import Transport, SecurityOptions, ServerInterface, RSAKey, DSSKey, \
SSHException, ChannelException
@@ -35,7 +36,7 @@ from paramiko.common import MSG_KEXINIT, cMSG_CHANNEL_WINDOW_ADJUST
from paramiko.py3compat import bytes
from paramiko.message import Message
from tests.loop import LoopSocket
-from tests.util import ParamikoTest, test_path
+from tests.util import test_path
LONG_BANNER = """\
@@ -105,7 +106,7 @@ class NullServer (ServerInterface):
return OPEN_SUCCEEDED
-class TransportTest(ParamikoTest):
+class TransportTest(unittest.TestCase):
def setUp(self):
self.socks = LoopSocket()
self.sockc = LoopSocket()