diff options
author | Scott Maxwell <scott@codecobblers.com> | 2013-10-30 16:19:30 -0700 |
---|---|---|
committer | Scott Maxwell <scott@codecobblers.com> | 2013-10-30 16:19:30 -0700 |
commit | 66cfa97cce92b1d60383d178887b18dddb999fc1 (patch) | |
tree | d4c70e30fb32d21a8b9f7cfcfbb62afbe1b5c067 /tests/test_auth.py | |
parent | 3afc76a6b4c4b06193cdb4837ca1df1f3428fb20 (diff) |
Fix imports
Diffstat (limited to 'tests/test_auth.py')
-rw-r--r-- | tests/test_auth.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_auth.py b/tests/test_auth.py index 61fe63f4..1e247d70 100644 --- a/tests/test_auth.py +++ b/tests/test_auth.py @@ -29,7 +29,8 @@ from paramiko import Transport, ServerInterface, RSAKey, DSSKey, \ AuthenticationException from paramiko import AUTH_FAILED, AUTH_PARTIALLY_SUCCESSFUL, AUTH_SUCCESSFUL from paramiko import OPEN_SUCCEEDED, OPEN_FAILED_ADMINISTRATIVELY_PROHIBITED -from loop import LoopSocket +from tests.loop import LoopSocket +from tests.util import test_path class NullServer (ServerInterface): |