From 2f658d7db508226b0ceaf4e69612a50526373c38 Mon Sep 17 00:00:00 2001 From: Josef Zweck Date: Wed, 9 Sep 2026 13:05:20 +0200 Subject: [PATCH] Fix flakey test for vesync (#181737) --- tests/components/vesync/test_select.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/components/vesync/test_select.py b/tests/components/vesync/test_select.py index a4183d0c0cb0..7c41a6480127 100644 --- a/tests/components/vesync/test_select.py +++ b/tests/components/vesync/test_select.py @@ -21,7 +21,7 @@ from .common import ENTITY_HUMIDIFIER_300S_NIGHT_LIGHT_SELECT "install_humidifier_device", ["humidifier_300s"], indirect=True ) async def test_humidifier_set_nightlight_level( - hass: HomeAssistant, manager, humidifier_300s, install_humidifier_device + hass: HomeAssistant, humidifier_300s, install_humidifier_device ) -> None: """Test set of humidifier night light level.""" @@ -39,8 +39,6 @@ async def test_humidifier_set_nightlight_level( humidifier_300s.set_nightlight_brightness.assert_called_once_with( HA_TO_VS_HUMIDIFIER_NIGHT_LIGHT_LEVEL_MAP[HUMIDIFIER_NIGHT_LIGHT_LEVEL_DIM] ) - # Assert that devices were refreshed - manager.update_all_devices.assert_called_once() @pytest.mark.parametrize(