From 924704e0d128bb15d84ace156adaf90d9ba9ed9e Mon Sep 17 00:00:00 2001 From: Charles Garwood Date: Wed, 17 Aug 2022 10:22:12 -0400 Subject: [PATCH] Fix fully_kiosk button test docstring and function name (#76935) Fix button test docstring and function name --- tests/components/fully_kiosk/test_button.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/components/fully_kiosk/test_button.py b/tests/components/fully_kiosk/test_button.py index 7183fc3db92..8616d7107f7 100644 --- a/tests/components/fully_kiosk/test_button.py +++ b/tests/components/fully_kiosk/test_button.py @@ -10,12 +10,12 @@ from homeassistant.helpers import device_registry as dr, entity_registry as er from tests.common import MockConfigEntry -async def test_binary_sensors( +async def test_buttons( hass: HomeAssistant, mock_fully_kiosk: MagicMock, init_integration: MockConfigEntry, ) -> None: - """Test standard Fully Kiosk binary sensors.""" + """Test standard Fully Kiosk buttons.""" entity_registry = er.async_get(hass) device_registry = dr.async_get(hass)