1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-28 04:33:49 +01:00

Restore original websocket commands for config entries (#93707)

Restore original websocket commands and add "config_entries/get_single"
This commit is contained in:
Marvin Wichmann
2023-05-29 03:40:35 +02:00
committed by GitHub
parent 5f584d5dbd
commit 795ef075da
4 changed files with 24 additions and 22 deletions

View File

@@ -36,7 +36,7 @@ async def test_options_flow_disabled_not_setup(
await ws_client.send_json(
{
"id": 5,
"type": "config_entries/get_matching",
"type": "config_entries/get",
"domain": "bluetooth",
}
)
@@ -370,7 +370,7 @@ async def test_options_flow_disabled_macos(
await ws_client.send_json(
{
"id": 5,
"type": "config_entries/get_matching",
"type": "config_entries/get",
"domain": "bluetooth",
}
)
@@ -403,7 +403,7 @@ async def test_options_flow_enabled_linux(
await ws_client.send_json(
{
"id": 5,
"type": "config_entries/get_matching",
"type": "config_entries/get",
"domain": "bluetooth",
}
)