aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/hazmat/bindings/test_openssl.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py
index 4e8dfa58..f283a7dd 100644
--- a/tests/hazmat/bindings/test_openssl.py
+++ b/tests/hazmat/bindings/test_openssl.py
@@ -58,7 +58,9 @@ class TestOpenSSL(object):
def test_nonexistent_cipher(self):
b = Backend()
b.ciphers.register_cipher_adapter(
- FakeCipher, FakeMode, lambda backend, cipher, mode: backend.ffi.NULL
+ FakeCipher,
+ FakeMode,
+ lambda backend, cipher, mode: backend.ffi.NULL
)
cipher = BlockCipher(
FakeCipher(), FakeMode(), backend=b,