Fix datetime
This commit is contained in:
parent
0b5f85469c
commit
8303cfbd2b
|
@ -157,7 +157,7 @@ def map_cis_fields(options, csr):
|
||||||
"csr": csr,
|
"csr": csr,
|
||||||
"signature_hash": signature_hash(options.get('signing_algorithm')),
|
"signature_hash": signature_hash(options.get('signing_algorithm')),
|
||||||
"validity": {
|
"validity": {
|
||||||
"valid_to": options['validity_end'].format('YYYY-MM-DD')
|
"valid_to": options['validity_end'].format('YYYY-MM-DDTHH:MM:SS' + Z)
|
||||||
},
|
},
|
||||||
"organization": {
|
"organization": {
|
||||||
"name": options['organization'],
|
"name": options['organization'],
|
||||||
|
|
|
@ -103,7 +103,7 @@ def test_map_cis_fields(app):
|
||||||
'signature_hash': 'sha256',
|
'signature_hash': 'sha256',
|
||||||
'organization': {'name': 'Example, Inc.', 'units': ['Example Org']},
|
'organization': {'name': 'Example, Inc.', 'units': ['Example Org']},
|
||||||
'validity': {
|
'validity': {
|
||||||
'valid_to': arrow.get(2017, 5, 7).format('YYYY-MM-DD')
|
'valid_to': arrow.get(2017, 5, 7).format('YYYY-MM-DDTHH:MM:SS' + Z)
|
||||||
},
|
},
|
||||||
'profile_name': None
|
'profile_name': None
|
||||||
}
|
}
|
||||||
|
@ -132,7 +132,7 @@ def test_map_cis_fields(app):
|
||||||
'signature_hash': 'sha256',
|
'signature_hash': 'sha256',
|
||||||
'organization': {'name': 'Example, Inc.', 'units': ['Example Org']},
|
'organization': {'name': 'Example, Inc.', 'units': ['Example Org']},
|
||||||
'validity': {
|
'validity': {
|
||||||
'valid_to': arrow.get(2018, 11, 3).format('YYYY-MM-DD')
|
'valid_to': arrow.get(2018, 11, 3).format('YYYY-MM-DDTHH:MM:SS' + Z)
|
||||||
},
|
},
|
||||||
'profile_name': None
|
'profile_name': None
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue