aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-06-26 20:26:25 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-06-26 20:26:25 -0400
commit76a0a644423477825623d69b27fd9e9b01edf89c (patch)
tree2750f3f0392fc9d7bf57c2dbae5bf42823a4d36c
parentcde1ecbf1815f004888d0ef49e24502b5aa3c613 (diff)
downloadcryptography-76a0a644423477825623d69b27fd9e9b01edf89c.tar.gz
cryptography-76a0a644423477825623d69b27fd9e9b01edf89c.tar.bz2
cryptography-76a0a644423477825623d69b27fd9e9b01edf89c.zip
fix this test
-rw-r--r--tests/test_x509.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index 03e95156..08dae0ce 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -858,7 +858,7 @@ class TestCertificateSigningRequestBuilder(object):
critical=False,
)
with pytest.raises(NotImplementedError):
- builder.sign(backend, private_key, hashes.SHA256())
+ builder.sign(private_key, hashes.SHA256(), backend)
def test_set_subject_twice(self):
builder = x509.CertificateSigningRequestBuilder()