String cleanup complete.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2024-02-21 14:50:36 -05:00
parent 7083db9351
commit 06d1e0236f
15 changed files with 67 additions and 54 deletions

View File

@@ -798,7 +798,7 @@ def test_update_does_not_create_new_version_when_there_is_no_change(
def test_update_set_process_type_on_template(client, sample_template):
auth_header = create_admin_authorization_header()
data = {"process_type": "priority"}
data = {"process_type": TemplateProcessType.PRIORITY}
resp = client.post(
f"/service/{sample_template.service_id}/template/{sample_template.id}",
data=json.dumps(data),
@@ -807,7 +807,7 @@ def test_update_set_process_type_on_template(client, sample_template):
assert resp.status_code == 200
template = dao_get_template_by_id(sample_template.id)
assert template.process_type == "priority"
assert template.process_type == TemplateProcessType.PRIORITY
@pytest.mark.parametrize(