@@ -50,13 +50,13 @@ async def mock_calendar_entity(hass: HomeAssistant, entity_registry: er.EntityRe
5050 # Contains tests
5151 ("contains" , "meeting" , "Team Meeting" , True ),
5252 ("contains" , "meeting" , "Daily Standup" , False ),
53- ("contains" , "doctor" , "Doctor Appointment" , True ),
53+ ("contains" , "doctor" , "Doctors Appointment" , True ),
5454 ("contains" , "vacation" , "Back from vacation" , True ),
5555 ("contains" , "party" , "Birthday celebration" , False ),
5656 # Starts with tests
5757 ("starts_with" , "meeting" , "Meeting with client" , True ),
5858 ("starts_with" , "meeting" , "Team Meeting" , False ),
59- ("starts_with" , "doctor" , "Doctor visit" , True ),
59+ ("starts_with" , "doctor" , "Doctors visit" , True ),
6060 ("starts_with" , "appointment" , "Doctor Appointment" , False ),
6161 # Ends with tests
6262 ("ends_with" , "meeting" , "Daily Meeting" , True ),
@@ -333,7 +333,7 @@ async def test_binary_sensor_default_comparison_method(
333333 [
334334 # Contains tests
335335 ("contains" , "meeting" , "Team Meeting" , True ),
336- ("contains" , "MEETING " , "team meeting" , True ), # Case insensitive
336+ ("contains" , "MEET " , "team meeting" , True ), # Case insensitive
337337 ("contains" , "meeting" , "Daily Standup" , False ),
338338 # Starts with tests
339339 ("starts_with" , "meeting" , "Meeting with client" , True ),
0 commit comments