diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-05-18 15:48:04 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-05-22 12:22:05 -0400 |
commit | 31a5a30cf50d3971693417ccfd1e15c1f8302147 (patch) | |
tree | d7a95ffe38ff2db928c3a196a985608f51cae000 /tests | |
parent | b0caad4a7df909a2b52c18c330afa18dc02814da (diff) |
Docstring tweak, import sort
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auth.py | 16 |
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, ) |