diff options
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. |