Skip to content

Commit

Permalink
fix: Correct hassfest failure
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerSelwyn committed Jan 7, 2025
1 parent 6e24048 commit 2ddcae5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/ms365_calendar/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 2ddcae5

Please sign in to comment.