diff --git a/custom_components/ms365_calendar/translations/en.json b/custom_components/ms365_calendar/translations/en.json index 96098ff..689a8dd 100644 --- a/custom_components/ms365_calendar/translations/en.json +++ b/custom_components/ms365_calendar/translations/en.json @@ -76,7 +76,7 @@ }, "exceptions": { "calendar_not_editable": { - "message": "Calendar '{name}' is not editable" + "message": "Calendar - {name} - is not editable" }, "ms365_group_calendar_error": { "message": "O365 Python does not have capability to update/respond to group calendar events: {entity_id}" diff --git a/tests/integration/test_services.py b/tests/integration/test_services.py index 844f438..ae04fa3 100644 --- a/tests/integration/test_services.py +++ b/tests/integration/test_services.py @@ -730,4 +730,4 @@ async def test_create_event_not_editable( blocking=True, return_response=False, ) - assert str(exc_info.value) == "Calendar 'Calendar3' is not editable" + assert str(exc_info.value) == "Calendar - Calendar3 - is not editable"