summaryrefslogtreecommitdiff
path: root/tests/signing
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-18 10:02:43 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-18 10:07:39 +0100
commita800036981c6fea8eb3dac22467965c71af05d29 (patch)
treec872f8a78d26f1de133d415fef922013dafe878a /tests/signing
parent65750b83523870851008e804364121f8c458fc2d (diff)
Fixed #21287 -- Fixed E123 pep8 warnings
Diffstat (limited to 'tests/signing')
-rw-r--r--tests/signing/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/signing/tests.py b/tests/signing/tests.py
index 5c5c2b1da7..8b470b9a38 100644
--- a/tests/signing/tests.py
+++ b/tests/signing/tests.py
@@ -33,7 +33,7 @@ class TestSigner(TestCase):
signer.signature('hello'),
signing.base64_hmac('extra-salt' + 'signer',
'hello', 'predictable-secret').decode()
- )
+ )
self.assertNotEqual(
signing.Signer('predictable-secret', salt='one').signature('hello'),
signing.Signer('predictable-secret', salt='two').signature('hello'))