summaryrefslogtreecommitdiffhomepage
path: root/tests/test_client.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-10-23 11:31:03 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-10-23 11:31:03 -0700
commit385856db1bd2a2db7c5dd922a6e74d8e63082303 (patch)
tree278287470408c016b51ee21d9fcd50bc7569b6a0 /tests/test_client.py
parentb9ff5f3e4b11a7b8928e51629df0bfde4c6ebe53 (diff)
Import cleanup, mostly focused on s/tests/./
Diffstat (limited to 'tests/test_client.py')
-rw-r--r--tests/test_client.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index 230739b0..fd662604 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -23,22 +23,23 @@ Some unit tests for SSHClient.
from __future__ import with_statement
import gc
+import os
import platform
import socket
-from tempfile import mkstemp
import threading
+import time
import unittest
-import weakref
import warnings
-import os
-import time
-from tests.util import _support
+import weakref
+from tempfile import mkstemp
import paramiko
from paramiko.pkey import PublicBlob
from paramiko.common import PY2
from paramiko.ssh_exception import SSHException, AuthenticationException
+from .util import _support
+
requires_gss_auth = unittest.skipUnless(
paramiko.GSS_AUTH_AVAILABLE, "GSS auth not available"