diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-11 20:24:13 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-11 20:24:13 -0500 |
commit | ec8948158e26df0ec549e333cc2ea4bb22d56350 (patch) | |
tree | 605531478922a9b56d867e8044387711f32b68d2 /tests/test_client.py | |
parent | 19a00412bfecd43d4fa6a13459955ccb13f29e02 (diff) |
blacken
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index a0dcab1a..cb34348a 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -803,7 +803,7 @@ class PasswordPassphraseTests(ClientTest): @requires_sha1_signing def test_password_kwarg_used_for_passphrase_when_no_passphrase_kwarg_given( - self + self, ): # noqa # Backwards compatibility: passphrase in the password field. self._test_connection( @@ -814,7 +814,7 @@ class PasswordPassphraseTests(ClientTest): @raises(AuthenticationException) # TODO: more granular @requires_sha1_signing def test_password_kwarg_not_used_for_passphrase_when_passphrase_kwarg_given( # noqa - self + self, ): # Sanity: if we're given both fields, the password field is NOT used as # a passphrase. |