More fixes, removing literal "created" from code.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2024-02-21 11:27:38 -05:00
parent 15eeac6367
commit 43a8b6539f
13 changed files with 95 additions and 72 deletions

View File

@@ -80,14 +80,14 @@ invalid_json_post_args = [
valid_json_post_response = {
"id": str(uuid.uuid4()),
"type": "email",
"type": TemplateType.EMAIL,
"version": 1,
"body": "some body",
}
valid_json_post_response_with_optionals = {
"id": str(uuid.uuid4()),
"type": "email",
"type": TemplateType.EMAIL,
"version": 1,
"body": "some body",
"subject": "some subject",