CSS follow up fixes

This commit is contained in:
Alex Janousek
2025-11-12 11:31:52 -05:00
parent df9036c9e2
commit 5752906984
6 changed files with 90 additions and 67 deletions

View File

@@ -1735,7 +1735,9 @@ def test_organization_dashboard_shows_edit_service_form(
"total_message_limit": 0,
},
)
mocker.patch("app.organizations_client.get_organization_services", return_value=[service])
mocker.patch(
"app.organizations_client.get_organization_services", return_value=[service]
)
mocker.patch(
"app.organizations_client.get_organization_dashboard",
return_value={"services": []},
@@ -1778,7 +1780,9 @@ def test_organization_dashboard_edit_service_updates_service(
"total_message_limit": 0,
},
)
mocker.patch("app.organizations_client.get_organization_services", return_value=[service])
mocker.patch(
"app.organizations_client.get_organization_services", return_value=[service]
)
mocker.patch(
"app.organizations_client.get_organization_dashboard",
return_value={"services": []},
@@ -1804,4 +1808,6 @@ def test_organization_dashboard_edit_service_updates_service(
assert mock_update_service.call_count == 3
mock_update_service.assert_any_call(SERVICE_ONE_ID, name="New Name")
mock_update_service.assert_any_call(SERVICE_ONE_ID, billing_contact_email_addresses="new@example.com")
mock_update_service.assert_any_call(
SERVICE_ONE_ID, billing_contact_email_addresses="new@example.com"
)