aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-11-27 07:33:44 -0800
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-11-27 07:33:44 -0800
commit774e2a6ec569c34b30bd9b857826ddb8749d2e9c (patch)
tree69468ac0d1dae34de5628225856da4347371275b /tests/hazmat
parente60e1d782cb7c1abe68811092f7db342ed14b81f (diff)
parentb7c3845a5169c9db3450236f08f8c6fd140b9ef1 (diff)
downloadcryptography-774e2a6ec569c34b30bd9b857826ddb8749d2e9c.tar.gz
cryptography-774e2a6ec569c34b30bd9b857826ddb8749d2e9c.tar.bz2
cryptography-774e2a6ec569c34b30bd9b857826ddb8749d2e9c.zip
Merge pull request #278 from alex/tests-fix
Fixed this test. It was passing for the wrong reason.
Diffstat (limited to 'tests/hazmat')
-rw-r--r--tests/hazmat/primitives/test_block.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_block.py b/tests/hazmat/primitives/test_block.py
index 4a8e88b4..f6c44b47 100644
--- a/tests/hazmat/primitives/test_block.py
+++ b/tests/hazmat/primitives/test_block.py
@@ -47,10 +47,10 @@ class TestCipher(object):
)
assert isinstance(cipher.decryptor(), interfaces.CipherContext)
- def test_instantiate_with_non_algorithm(self):
+ def test_instantiate_with_non_algorithm(self, backend):
algorithm = object()
with pytest.raises(TypeError):
- Cipher(algorithm, mode=None)
+ Cipher(algorithm, mode=None, backend=backend)
class TestCipherContext(object):