aboutsummaryrefslogtreecommitdiffstats
path: root/tests/primitives/test_cryptrec.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-22 19:24:31 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-22 19:24:31 -0700
commit25c0037d0d1bf4b4d426cc03b9390456d127d4d7 (patch)
treefebc087d21873d764c7701a18f79cf4eef649f9c /tests/primitives/test_cryptrec.py
parent68e5de708d623a03ea4cbd4d3a4297b5722950eb (diff)
parentf4c59767cdfe7716c82a72b00baa427637b505bd (diff)
downloadcryptography-25c0037d0d1bf4b4d426cc03b9390456d127d4d7.tar.gz
cryptography-25c0037d0d1bf4b4d426cc03b9390456d127d4d7.tar.bz2
cryptography-25c0037d0d1bf4b4d426cc03b9390456d127d4d7.zip
Merge pull request #172 from reaperhulk/api-to-backend-in-one-easy-step
The great api -> backend rename
Diffstat (limited to 'tests/primitives/test_cryptrec.py')
-rw-r--r--tests/primitives/test_cryptrec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/primitives/test_cryptrec.py b/tests/primitives/test_cryptrec.py
index 02a04473..d8c9aaa3 100644
--- a/tests/primitives/test_cryptrec.py
+++ b/tests/primitives/test_cryptrec.py
@@ -37,7 +37,7 @@ class TestCamelliaECB(object):
],
lambda key: ciphers.Camellia(binascii.unhexlify((key))),
lambda key: modes.ECB(),
- only_if=lambda api: api.supports_cipher(
+ only_if=lambda backend: backend.supports_cipher(
ciphers.Camellia("\x00" * 16), modes.ECB()
),
skip_message="Does not support Camellia ECB",