diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-04 19:30:20 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-04 19:30:20 -0800 |
commit | 86f98a051c9298020ac1d6cdb06ceb513699c7fa (patch) | |
tree | e428bf2a267577f93e37ea05714cd08ab2ae3f54 /tests | |
parent | 85be46d74706a46b6407685610066506d23a49e8 (diff) | |
download | cryptography-86f98a051c9298020ac1d6cdb06ceb513699c7fa.tar.gz cryptography-86f98a051c9298020ac1d6cdb06ceb513699c7fa.tar.bz2 cryptography-86f98a051c9298020ac1d6cdb06ceb513699c7fa.zip |
79 cols
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/bindings/test_openssl.py | 4 |
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, |