aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/bindings/test_openssl.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-04 19:30:20 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-04 19:30:20 -0800
commit86f98a051c9298020ac1d6cdb06ceb513699c7fa (patch)
treee428bf2a267577f93e37ea05714cd08ab2ae3f54 /tests/hazmat/bindings/test_openssl.py
parent85be46d74706a46b6407685610066506d23a49e8 (diff)
downloadcryptography-86f98a051c9298020ac1d6cdb06ceb513699c7fa.tar.gz
cryptography-86f98a051c9298020ac1d6cdb06ceb513699c7fa.tar.bz2
cryptography-86f98a051c9298020ac1d6cdb06ceb513699c7fa.zip
79 cols
Diffstat (limited to 'tests/hazmat/bindings/test_openssl.py')
-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,