We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb6f7c commit 4159e48Copy full SHA for 4159e48
tests/components/wiz/test_init.py
@@ -74,7 +74,9 @@ async def test_wrong_device_now_has_our_ip(hass: HomeAssistant) -> None:
74
bulb.mac = "dddddddddddd"
75
_, entry = await async_setup_integration(hass, wizlight=bulb)
76
assert entry.state is ConfigEntryState.SETUP_RETRY
77
- await hass.async_block_till_done(wait_background_tasks=True)
+
78
+ with _patch_wizlight():
79
+ await hass.async_block_till_done(wait_background_tasks=True)
80
81
82
async def test_reload_on_title_change(hass: HomeAssistant) -> None:
0 commit comments