diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-01 12:28:37 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-01 12:28:37 -0800 |
commit | 516b1adadd000cb17eb5cf53b81e8c2638903d70 (patch) | |
tree | 585208dee2fc4a33b7fa70a977d146f849accf40 /tests | |
parent | ad8e76c333c4e969532d9239f686eea820f6f870 (diff) | |
download | cryptography-516b1adadd000cb17eb5cf53b81e8c2638903d70.tar.gz cryptography-516b1adadd000cb17eb5cf53b81e8c2638903d70.tar.bz2 cryptography-516b1adadd000cb17eb5cf53b81e8c2638903d70.zip |
Fixed test for earlier exceptino
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/utils.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/hazmat/primitives/utils.py b/tests/hazmat/primitives/utils.py index cdcf84cb..6ecc70ff 100644 --- a/tests/hazmat/primitives/utils.py +++ b/tests/hazmat/primitives/utils.py @@ -264,13 +264,10 @@ def aead_tag_exception_test(backend, cipher_factory, mode_factory): ) with pytest.raises(ValueError): cipher.decryptor() - cipher = Cipher( - cipher_factory(binascii.unhexlify(b"0" * 32)), - mode_factory(binascii.unhexlify(b"0" * 24), b"000"), - backend - ) + with pytest.raises(ValueError): - cipher.decryptor() + mode_factory(binascii.unhexlify(b"0" * 24), b"000") + cipher = Cipher( cipher_factory(binascii.unhexlify(b"0" * 32)), mode_factory(binascii.unhexlify(b"0" * 24), b"0" * 16), |