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 45558f3 commit f2f769bCopy full SHA for f2f769b
tests/components/bmw_connected_drive/test_config_flow.py
@@ -274,10 +274,14 @@ async def test_reauth(hass: HomeAssistant) -> None:
274
275
async def test_reconfigure(hass: HomeAssistant) -> None:
276
"""Test the reconfiguration form."""
277
- with patch(
278
- BIMMER_CONNECTED_LOGIN_PATCH,
279
- side_effect=login_sideeffect,
280
- autospec=True,
+ with (
+ patch(
+ BIMMER_CONNECTED_LOGIN_PATCH, side_effect=login_sideeffect, autospec=True
+ ),
281
282
+ "homeassistant.components.bmw_connected_drive.async_setup_entry",
283
+ return_value=True,
284
285
):
286
config_entry = MockConfigEntry(**FIXTURE_CONFIG_ENTRY)
287
config_entry.add_to_hass(hass)
0 commit comments