Remove setting name in AnthemAV config flow (#99148)
This commit is contained in:
parent
20a2e129fb
commit
bc665a1368
4 changed files with 9 additions and 12 deletions
|
@ -5,7 +5,7 @@ from unittest.mock import AsyncMock, MagicMock, patch
|
|||
import pytest
|
||||
|
||||
from homeassistant.components.anthemav.const import CONF_MODEL, DOMAIN
|
||||
from homeassistant.const import CONF_HOST, CONF_MAC, CONF_NAME, CONF_PORT
|
||||
from homeassistant.const import CONF_HOST, CONF_MAC, CONF_PORT
|
||||
from homeassistant.core import HomeAssistant
|
||||
|
||||
from tests.common import MockConfigEntry
|
||||
|
@ -55,10 +55,10 @@ def mock_config_entry() -> MockConfigEntry:
|
|||
"""Return the default mocked config entry."""
|
||||
return MockConfigEntry(
|
||||
domain=DOMAIN,
|
||||
title="Anthem AV",
|
||||
data={
|
||||
CONF_HOST: "1.1.1.1",
|
||||
CONF_PORT: 14999,
|
||||
CONF_NAME: "Anthem AV",
|
||||
CONF_MAC: "00:00:00:00:00:01",
|
||||
CONF_MODEL: "MRX 520",
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue