aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-07-01 08:36:21 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-07-01 08:36:21 -0700
commitaf924ee5088af510934bb76efc6bd8ba584e68c0 (patch)
tree892429210609f880689f85ab4f1bf445cca31365 /tests
parent2159b414ea01be7721c99943d712956596a99337 (diff)
parent02de00885830b637d7614b48c7f8e8ab0d12d608 (diff)
downloadcryptography-af924ee5088af510934bb76efc6bd8ba584e68c0.tar.gz
cryptography-af924ee5088af510934bb76efc6bd8ba584e68c0.tar.bz2
cryptography-af924ee5088af510934bb76efc6bd8ba584e68c0.zip
Merge pull request #1207 from reaperhulk/rename-a-method
rename a method in the cc backend for clarity
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