aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/backends
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-08-03 18:01:13 +0100
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-08-03 18:01:13 +0100
commitb8f11bca26c1819ccdfb2a36e18375b19a91e5da (patch)
treee8314927726e2527f15bb0298891addadbab72ba /tests/hazmat/backends
parent9add80e455fc3f8cd160035c4c2d1ce05a50cdea (diff)
downloadcryptography-b8f11bca26c1819ccdfb2a36e18375b19a91e5da.tar.gz
cryptography-b8f11bca26c1819ccdfb2a36e18375b19a91e5da.tar.bz2
cryptography-b8f11bca26c1819ccdfb2a36e18375b19a91e5da.zip
missed one
Diffstat (limited to 'tests/hazmat/backends')
-rw-r--r--tests/hazmat/backends/test_openssl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py
index c2a4f544..0f2c80a6 100644
--- a/tests/hazmat/backends/test_openssl.py
+++ b/tests/hazmat/backends/test_openssl.py
@@ -531,7 +531,7 @@ class TestOpenSSLSignX509Certificate(object):
)
with pytest.raises(NotImplementedError):
- builder.sign(backend, private_key, hashes.SHA1())
+ builder.sign(private_key, hashes.SHA1(), backend)
class TestOpenSSLSerialisationWithOpenSSL(object):