diff --git a/homeassistant/components/alexa/entities.py b/homeassistant/components/alexa/entities.py index 2a3355434a3..89ca646890b 100644 --- a/homeassistant/components/alexa/entities.py +++ b/homeassistant/components/alexa/entities.py @@ -673,3 +673,4 @@ class ImageProcessingCapabilities(AlexaEntity): """Yield the supported interfaces.""" yield AlexaEventDetectionSensor(self.hass, self.entity) yield AlexaEndpointHealth(self.hass, self.entity) + yield Alexa(self.hass) diff --git a/tests/components/alexa/test_smart_home.py b/tests/components/alexa/test_smart_home.py index 4187c4a2c4f..468652bf6d2 100644 --- a/tests/components/alexa/test_smart_home.py +++ b/tests/components/alexa/test_smart_home.py @@ -2524,7 +2524,7 @@ async def test_image_processing(hass): assert appliance["friendlyName"] == "Test face" assert_endpoint_capabilities( - appliance, "Alexa.EventDetectionSensor", "Alexa.EndpointHealth" + appliance, "Alexa.EventDetectionSensor", "Alexa.EndpointHealth", "Alexa" )