From 9d377aabdbb0a5e3c84adffd5043c2717ac68011 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 19 May 2022 14:11:29 +0200 Subject: [PATCH] Fix Google tests (#72158) --- tests/components/google/test_config_flow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/components/google/test_config_flow.py b/tests/components/google/test_config_flow.py index 9339ca9988f..88a090773bc 100644 --- a/tests/components/google/test_config_flow.py +++ b/tests/components/google/test_config_flow.py @@ -99,7 +99,7 @@ async def test_full_flow_yaml_creds( ) assert result.get("type") == "create_entry" - assert result.get("title") == "client-id" + assert result.get("title") == "Import from configuration.yaml" assert "data" in result data = result["data"] assert "token" in data @@ -161,7 +161,7 @@ async def test_full_flow_application_creds( ) assert result.get("type") == "create_entry" - assert result.get("title") == "client-id" + assert result.get("title") == "Import from configuration.yaml" assert "data" in result data = result["data"] assert "token" in data @@ -278,7 +278,7 @@ async def test_exchange_error( ) assert result.get("type") == "create_entry" - assert result.get("title") == "client-id" + assert result.get("title") == "Import from configuration.yaml" assert "data" in result data = result["data"] assert "token" in data