aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-08-10 16:03:42 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2013-08-10 16:03:42 -0400
commit497576ccf513eb84f28b08f1243dc3b6df3066e0 (patch)
treee52d187fd9b64e65f6b8d64db78e235bc9deb60e
parentad89af11b234524e543284d3095a15905518ad70 (diff)
downloadcryptography-497576ccf513eb84f28b08f1243dc3b6df3066e0.tar.gz
cryptography-497576ccf513eb84f28b08f1243dc3b6df3066e0.tar.bz2
cryptography-497576ccf513eb84f28b08f1243dc3b6df3066e0.zip
Fixed wrong test
-rw-r--r--tests/primitives/test_block.py2
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()