diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-19 17:10:14 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-19 17:10:14 -0800 |
commit | 3c25f61c18c6f8f9a2210fb2124654023bcec775 (patch) | |
tree | 1deb18a04e772fff40f0181e7dd0438db2d33b6f /tests/hazmat | |
parent | 51cd5a1534fe4d9f84563f09cf95fb4a547cf143 (diff) | |
download | cryptography-3c25f61c18c6f8f9a2210fb2124654023bcec775.tar.gz cryptography-3c25f61c18c6f8f9a2210fb2124654023bcec775.tar.bz2 cryptography-3c25f61c18c6f8f9a2210fb2124654023bcec775.zip |
fixed typo
Diffstat (limited to 'tests/hazmat')
-rw-r--r-- | tests/hazmat/primitives/test_block.py | 2 |
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, ) |