* Fixing issue where decrypted credentials were not returning valid strings.
This commit is contained in:
kevgliss
2016-08-26 16:02:23 -07:00
committed by GitHub
parent 2d7a6ccf3c
commit 7e6278684c
3 changed files with 12 additions and 10 deletions

View File

@ -328,8 +328,8 @@ def test_create_certificate(issuer_plugin, authority, logged_in_admin):
def test_create_csr():
from lemur.certificates.service import create_csr
csr, private_key = create_csr(common_name='ACommonName', organization='test', organizational_unit='Meters', country='US',
state='CA', location='Here', owner='joe@example.com')
csr, private_key = create_csr(owner='joe@example.com', common_name='ACommonName', organization='test', organizational_unit='Meters', country='US',
state='CA', location='Here')
assert csr
assert private_key