summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-05-18 15:48:04 -0400
committerJeff Forcier <jeff@bitprophet.org>2023-05-22 12:22:05 -0400
commit31a5a30cf50d3971693417ccfd1e15c1f8302147 (patch)
treed7a95ffe38ff2db928c3a196a985608f51cae000
parentb0caad4a7df909a2b52c18c330afa18dc02814da (diff)
Docstring tweak, import sort
-rw-r--r--tests/auth.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/auth.py b/tests/auth.py
index 5d732218..23d578d0 100644
--- a/tests/auth.py
+++ b/tests/auth.py
@@ -1,29 +1,29 @@
"""
Tests focusing primarily on the authentication step.
-Thus, they concern AuthHandler, with a side of Transport.
+Thus, they concern AuthHandler and AuthStrategy, with a side of Transport.
"""
from pytest import raises
from paramiko import (
- RSAKey,
+ AuthenticationException,
+ BadAuthenticationType,
DSSKey,
PKey,
- BadAuthenticationType,
- AuthenticationException,
+ RSAKey,
SSHException,
ServiceRequestingTransport,
)
from ._util import (
+ _disable_sha1_pubkey,
+ _disable_sha2,
+ _disable_sha2_pubkey,
_support,
+ requires_sha1_signing,
server,
unicodey,
- requires_sha1_signing,
- _disable_sha2,
- _disable_sha2_pubkey,
- _disable_sha1_pubkey,
)