diff options
author | Ian Cordasco <graffatcolmingov@gmail.com> | 2015-07-19 10:26:59 -0500 |
---|---|---|
committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2015-07-19 10:26:59 -0500 |
commit | 8887a57bc4be41657d174c371798232b976dfa5b (patch) | |
tree | a01b1a3ab6e548eb66f328f209e76b2bd5dbcaa6 | |
parent | 8d6733091322f87a3bbcff2c9ed414c52eeab746 (diff) | |
download | cryptography-8887a57bc4be41657d174c371798232b976dfa5b.tar.gz cryptography-8887a57bc4be41657d174c371798232b976dfa5b.tar.bz2 cryptography-8887a57bc4be41657d174c371798232b976dfa5b.zip |
Use explicit keyword args in the tests
-rw-r--r-- | tests/test_x509.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py index 7edef7ed..91b4f2b3 100644 --- a/tests/test_x509.py +++ b/tests/test_x509.py @@ -801,7 +801,7 @@ class TestRSACertificateRequest(object): ])).public_key( subject_private_key.public_key() ).add_extension( - x509.BasicConstraints(False, None), True, + x509.BasicConstraints(ca=False, path_length=None), True, ).not_valid_before( not_valid_before ).not_valid_after( |