diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-10 16:03:42 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-10 16:03:42 -0400 |
commit | 497576ccf513eb84f28b08f1243dc3b6df3066e0 (patch) | |
tree | e52d187fd9b64e65f6b8d64db78e235bc9deb60e /tests/primitives | |
parent | ad89af11b234524e543284d3095a15905518ad70 (diff) | |
download | cryptography-497576ccf513eb84f28b08f1243dc3b6df3066e0.tar.gz cryptography-497576ccf513eb84f28b08f1243dc3b6df3066e0.tar.bz2 cryptography-497576ccf513eb84f28b08f1243dc3b6df3066e0.zip |
Fixed wrong test
Diffstat (limited to 'tests/primitives')
-rw-r--r-- | tests/primitives/test_block.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/primitives/test_block.py b/tests/primitives/test_block.py index 9059a886..0407b0fa 100644 --- a/tests/primitives/test_block.py +++ b/tests/primitives/test_block.py @@ -58,4 +58,4 @@ class TestBlockCipher(object): cipher._operation = pretend.stub(name="wat") with pytest.raises(ValueError): - cipher.encrypt(b"b" * 16) + cipher.finalize() |