diff --git a/tests/components/cloud/test_alexa_config.py b/tests/components/cloud/test_alexa_config.py index cbeda41dac7..e54a5dcde01 100644 --- a/tests/components/cloud/test_alexa_config.py +++ b/tests/components/cloud/test_alexa_config.py @@ -25,7 +25,9 @@ async def test_alexa_config_expose_entity_prefs(hass, cloud_prefs): entity_conf["should_expose"] = None assert conf.should_expose("light.kitchen") - await cloud_prefs.async_update(alexa_default_expose=["sensor"],) + await cloud_prefs.async_update( + alexa_default_expose=["sensor"], + ) assert not conf.should_expose("light.kitchen") diff --git a/tests/components/cloud/test_google_config.py b/tests/components/cloud/test_google_config.py index 977df95051e..78207605830 100644 --- a/tests/components/cloud/test_google_config.py +++ b/tests/components/cloud/test_google_config.py @@ -187,5 +187,7 @@ async def test_google_config_expose_entity_prefs(mock_conf, cloud_prefs): entity_conf["should_expose"] = None assert mock_conf.should_expose(state) - await cloud_prefs.async_update(google_default_expose=["sensor"],) + await cloud_prefs.async_update( + google_default_expose=["sensor"], + ) assert not mock_conf.should_expose(state) diff --git a/tests/components/generic/test_camera.py b/tests/components/generic/test_camera.py index c3400d8f57c..7be1670dd4c 100644 --- a/tests/components/generic/test_camera.py +++ b/tests/components/generic/test_camera.py @@ -330,11 +330,16 @@ async def test_reloading(aioclient_mock, hass, hass_client): assert body == "hello world" yaml_path = path.join( - _get_fixtures_base_path(), "fixtures", "generic/configuration.yaml", + _get_fixtures_base_path(), + "fixtures", + "generic/configuration.yaml", ) with patch.object(hass_config, "YAML_CONFIG_FILE", yaml_path): await hass.services.async_call( - DOMAIN, SERVICE_RELOAD, {}, blocking=True, + DOMAIN, + SERVICE_RELOAD, + {}, + blocking=True, ) await hass.async_block_till_done()