diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-09-10 10:50:06 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-09-10 19:47:50 -0500 |
commit | dc689293704e9181af452aaef495e4c417160e40 (patch) | |
tree | 4cee40f66674362d880f308326e7a969f622c7e6 /tests/bindings/test_openssl.py | |
parent | 29cfa6989bfbc9545c2b40e9e3b316e89c0c14ca (diff) | |
download | cryptography-dc689293704e9181af452aaef495e4c417160e40.tar.gz cryptography-dc689293704e9181af452aaef495e4c417160e40.tar.bz2 cryptography-dc689293704e9181af452aaef495e4c417160e40.zip |
rename get_null_for_ecb to get_iv_for_ecb per alex's comments
Diffstat (limited to 'tests/bindings/test_openssl.py')
-rw-r--r-- | tests/bindings/test_openssl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bindings/test_openssl.py b/tests/bindings/test_openssl.py index c5927b76..f25236cc 100644 --- a/tests/bindings/test_openssl.py +++ b/tests/bindings/test_openssl.py @@ -29,5 +29,5 @@ class TestOpenSSL(object): """ assert api.openssl_version_text().startswith("OpenSSL") - def test_get_null_for_ecb(self): - assert api.get_null_for_ecb() == api._ffi.NULL + def test_get_iv_for_ecb(self): + assert api.get_iv_for_ecb() == api._ffi.NULL |