diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-03 19:35:44 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-03 19:35:44 -0800 |
commit | 7e262a6d730f45d40645323c8462b4c480fe7319 (patch) | |
tree | 750e559bb6625ec7f57fda20d0cf0ccf08fea91e /tests | |
parent | 0857c3f03e2784cac9e2a35f5579e9c4c8dc824a (diff) | |
download | cryptography-7e262a6d730f45d40645323c8462b4c480fe7319.tar.gz cryptography-7e262a6d730f45d40645323c8462b4c480fe7319.tar.bz2 cryptography-7e262a6d730f45d40645323c8462b4c480fe7319.zip |
typo fix
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/bindings/test_openssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py index fcd54ddd..af9be353 100644 --- a/tests/hazmat/bindings/test_openssl.py +++ b/tests/hazmat/bindings/test_openssl.py @@ -44,7 +44,7 @@ class TestOpenSSL(object): with pytest.raises(ValueError): backend.ciphers.register_cipher_adapter(AES, CBC, None) - def test_nonexistant_cipher(self): + def test_nonexistent_cipher(self): b = Backend() # TODO: this test assumes that 3DES-ECB doesn't exist b.ciphers.register_cipher_adapter( |