aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-19 17:10:14 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-19 17:10:14 -0800
commit3c25f61c18c6f8f9a2210fb2124654023bcec775 (patch)
tree1deb18a04e772fff40f0181e7dd0438db2d33b6f /tests
parent51cd5a1534fe4d9f84563f09cf95fb4a547cf143 (diff)
downloadcryptography-3c25f61c18c6f8f9a2210fb2124654023bcec775.tar.gz
cryptography-3c25f61c18c6f8f9a2210fb2124654023bcec775.tar.bz2
cryptography-3c25f61c18c6f8f9a2210fb2124654023bcec775.zip
fixed typo
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_block.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_block.py b/tests/hazmat/primitives/test_block.py
index 52221cb6..e0deb36b 100644
--- a/tests/hazmat/primitives/test_block.py
+++ b/tests/hazmat/primitives/test_block.py
@@ -144,6 +144,6 @@ class TestModeValidation(object):
with pytest.raises(ValueError):
Cipher(
algorithms.AES(b"\x00" * 16),
- modes.CFB(b"abc"),
+ modes.CTR(b"abc"),
backend,
)