diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-07-09 16:35:25 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-07-09 16:35:25 -0300 |
commit | cdddc93285a0b8d78b6c468f3221721918552814 (patch) | |
tree | 3e7d38c08972686aef48dbc979c9b27b93ac0151 | |
parent | 1c002eb9797107eb89540d70ca499c3a379d2bee (diff) |
pep8
-rw-r--r-- | src/leap/crypto/tests/test_srpauth.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/crypto/tests/test_srpauth.py b/src/leap/crypto/tests/test_srpauth.py index e84a6b37..e3258fd3 100644 --- a/src/leap/crypto/tests/test_srpauth.py +++ b/src/leap/crypto/tests/test_srpauth.py @@ -401,9 +401,9 @@ class SRPAuthTestCase(unittest.TestCase): content.side_effect = JSONDecodeError("", "", 0) with self.assertRaises(srpauth.SRPAuthJSONDecodeError): - self.auth_backend._process_challenge( - salt_B, - username=self.TEST_USER) + self.auth_backend._process_challenge( + salt_B, + username=self.TEST_USER) d.addCallback(partial(threads.deferToThread, wrapper)) |