aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-07-01 08:27:48 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-07-01 08:27:48 -0600
commit02de00885830b637d7614b48c7f8e8ab0d12d608 (patch)
tree80d031bbc43cd745db972137e4ba79709f8af211 /tests
parent333370c385527371db45dba1634eab5e71c70fcb (diff)
downloadcryptography-02de00885830b637d7614b48c7f8e8ab0d12d608.tar.gz
cryptography-02de00885830b637d7614b48c7f8e8ab0d12d608.tar.bz2
cryptography-02de00885830b637d7614b48c7f8e8ab0d12d608.zip
rename the rest of the method
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/backends/test_commoncrypto.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/hazmat/backends/test_commoncrypto.py b/tests/hazmat/backends/test_commoncrypto.py
index 7c703f67..e2c6f4a0 100644
--- a/tests/hazmat/backends/test_commoncrypto.py
+++ b/tests/hazmat/backends/test_commoncrypto.py
@@ -51,13 +51,13 @@ class TestCommonCrypto(object):
from cryptography.hazmat.backends.commoncrypto.backend import backend
with pytest.raises(ValueError):
- backend._check_response(backend._lib.kCCAlignmentError)
+ backend._check_cipher_response(backend._lib.kCCAlignmentError)
with pytest.raises(InternalError):
- backend._check_response(backend._lib.kCCMemoryFailure)
+ backend._check_cipher_response(backend._lib.kCCMemoryFailure)
with pytest.raises(InternalError):
- backend._check_response(backend._lib.kCCDecodeError)
+ backend._check_cipher_response(backend._lib.kCCDecodeError)
def test_nonexistent_aead_cipher(self):
from cryptography.hazmat.backends.commoncrypto.backend import Backend