diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-29 23:40:23 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-29 23:40:23 -0700 |
commit | 3b1e6e4b2ec5274b8e21c446e18fc993001e637e (patch) | |
tree | c64d77ed0640a8c1ed10a8e554e63449a6f0d8d0 | |
parent | a7f6edfb9d26d81c748a71bfd64f179f3633af28 (diff) | |
parent | ed63a7998d9340690d4237fca158f5031e122e2e (diff) | |
download | cryptography-3b1e6e4b2ec5274b8e21c446e18fc993001e637e.tar.gz cryptography-3b1e6e4b2ec5274b8e21c446e18fc993001e637e.tar.bz2 cryptography-3b1e6e4b2ec5274b8e21c446e18fc993001e637e.zip |
Merge pull request #871 from Ayrx/add-skip-test
Add test skip if CipherBackend is not supported
-rw-r--r-- | tests/hazmat/primitives/test_block.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_block.py b/tests/hazmat/primitives/test_block.py index 68d6c849..acfd947c 100644 --- a/tests/hazmat/primitives/test_block.py +++ b/tests/hazmat/primitives/test_block.py @@ -158,6 +158,7 @@ class TestAEADCipherContext(object): ) +@pytest.mark.cipher class TestModeValidation(object): def test_cbc(self, backend): with pytest.raises(ValueError): |