diff options
Diffstat (limited to 'tests/hazmat/primitives/test_block.py')
-rw-r--r-- | tests/hazmat/primitives/test_block.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/hazmat/primitives/test_block.py b/tests/hazmat/primitives/test_block.py index 4c6ad18b..c053feaf 100644 --- a/tests/hazmat/primitives/test_block.py +++ b/tests/hazmat/primitives/test_block.py @@ -6,8 +6,6 @@ from __future__ import absolute_import, division, print_function import binascii -import cffi - import pytest from cryptography.exceptions import ( @@ -72,10 +70,6 @@ class TestCipherContext(object): with pytest.raises(AlreadyFinalized): decryptor.finalize() - @pytest.mark.skipif( - cffi.__version_info__ < (1, 7), - reason="cffi version too old" - ) def test_use_update_into_after_finalize(self, backend): cipher = Cipher( algorithms.AES(binascii.unhexlify(b"0" * 32)), |