aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/backends
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-08-03 13:55:41 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-08-03 13:55:41 -0400
commitb45c79b69d75c0e1dc69e941f67c3eaa4326a443 (patch)
tree8240d0cd72de8f74c8c0b41b5b2b607d6fe69b24 /tests/hazmat/backends
parent05db69f2a4c86b1e43a7af70a95e1a223982f658 (diff)
parentb8f11bca26c1819ccdfb2a36e18375b19a91e5da (diff)
downloadcryptography-b45c79b69d75c0e1dc69e941f67c3eaa4326a443.tar.gz
cryptography-b45c79b69d75c0e1dc69e941f67c3eaa4326a443.tar.bz2
cryptography-b45c79b69d75c0e1dc69e941f67c3eaa4326a443.zip
Merge pull request #2196 from reaperhulk/reorder-certbuilder-args
reorder CertificateBuilder sign arguments
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):