Regenerated poetry lock

This commit is contained in:
alexjanousekGSA
2025-06-09 12:35:14 -04:00
parent c4c3967def
commit bcbd98114c
2 changed files with 53 additions and 354 deletions
Generated
+49 -353
View File
File diff suppressed because it is too large Load Diff
+4 -1
View File
@@ -55,6 +55,7 @@ def test_get_public_notify_type_text():
get_public_notify_type_text(ServicePermissionType.UPLOAD_DOCUMENT) == "document" get_public_notify_type_text(ServicePermissionType.UPLOAD_DOCUMENT) == "document"
) )
@pytest.mark.parametrize( @pytest.mark.parametrize(
"template_type, expected_class", "template_type, expected_class",
[ [
@@ -128,7 +129,9 @@ def test_get_template_instance_comprehensive(template_type, values):
template = { template = {
"template_type": template_type, "template_type": template_type,
"id": "test-id", "id": "test-id",
"content": "Test content ((name))" if values and "name" in values else "Test content", "content": (
"Test content ((name))" if values and "name" in values else "Test content"
),
"subject": "Test subject" if template_type == TemplateType.EMAIL else None, "subject": "Test subject" if template_type == TemplateType.EMAIL else None,
} }