aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_arc4.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-13 09:49:23 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-13 09:49:23 -0800
commite5aa205070877852ff2d54eebcc0d4ac9cf8465e (patch)
treef8949a7ebe891bbaa183cda6146314e67708133d /tests/hazmat/primitives/test_arc4.py
parent063a3a25630df98f4524fdc54a55cef670810d9f (diff)
downloadcryptography-e5aa205070877852ff2d54eebcc0d4ac9cf8465e.tar.gz
cryptography-e5aa205070877852ff2d54eebcc0d4ac9cf8465e.tar.bz2
cryptography-e5aa205070877852ff2d54eebcc0d4ac9cf8465e.zip
Also remove teh ciphers specific class
Diffstat (limited to 'tests/hazmat/primitives/test_arc4.py')
-rw-r--r--tests/hazmat/primitives/test_arc4.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_arc4.py b/tests/hazmat/primitives/test_arc4.py
index 302658f6..d233bec2 100644
--- a/tests/hazmat/primitives/test_arc4.py
+++ b/tests/hazmat/primitives/test_arc4.py
@@ -36,7 +36,7 @@ class TestARC4(object):
"rfc-6229-256.txt",
],
lambda key: algorithms.ARC4(binascii.unhexlify((key))),
- only_if=lambda backend: backend.ciphers.supported(
+ only_if=lambda backend: backend.cipher_supported(
algorithms.ARC4("\x00" * 16), None
),
skip_message="Does not support ARC4",