diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-03 13:55:41 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-03 13:55:41 -0400 |
commit | b45c79b69d75c0e1dc69e941f67c3eaa4326a443 (patch) | |
tree | 8240d0cd72de8f74c8c0b41b5b2b607d6fe69b24 /tests/hazmat/backends | |
parent | 05db69f2a4c86b1e43a7af70a95e1a223982f658 (diff) | |
parent | b8f11bca26c1819ccdfb2a36e18375b19a91e5da (diff) | |
download | cryptography-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.py | 2 |
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): |