aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/backends/test_openssl.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-08-06 08:36:07 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-08-06 08:36:07 -0400
commitb4fdc5e77a0cb23d1db4b344eaea4be2389d2148 (patch)
tree8a5d14ee9c1e43e873c035d66d97c07a9d375732 /tests/hazmat/backends/test_openssl.py
parent304d9386d4a6e92325a0952b356f30e34562b446 (diff)
parent1ae7653fcb027ddc0b201d50a011678c93186b11 (diff)
downloadcryptography-b4fdc5e77a0cb23d1db4b344eaea4be2389d2148.tar.gz
cryptography-b4fdc5e77a0cb23d1db4b344eaea4be2389d2148.tar.bz2
cryptography-b4fdc5e77a0cb23d1db4b344eaea4be2389d2148.zip
Merge pull request #2219 from reaperhulk/fix-2218
rename sign_x509_certificate backend method to create_x509_certificate
Diffstat (limited to 'tests/hazmat/backends/test_openssl.py')
-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 bd9aadb8..051827af 100644
--- a/tests/hazmat/backends/test_openssl.py
+++ b/tests/hazmat/backends/test_openssl.py
@@ -512,7 +512,7 @@ class TestOpenSSLSignX509Certificate(object):
private_key = RSA_KEY_2048.private_key(backend)
with pytest.raises(TypeError):
- backend.sign_x509_certificate(object(), private_key, DummyHash())
+ backend.create_x509_certificate(object(), private_key, DummyHash())
def test_checks_for_unsupported_extensions(self):
private_key = RSA_KEY_2048.private_key(backend)