aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_block.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hazmat/primitives/test_block.py')
-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,
)