Remove incorrect constant usage in test (#91198)
This commit is contained in:
parent
2f7c5a56eb
commit
7b3a932cd9
47 changed files with 85 additions and 87 deletions
|
@ -4,7 +4,6 @@ from unittest.mock import patch
|
|||
|
||||
from homeassistant import config_entries
|
||||
from homeassistant.components.venstar.const import DOMAIN
|
||||
from homeassistant.config_entries import SOURCE_USER
|
||||
from homeassistant.const import (
|
||||
CONF_HOST,
|
||||
CONF_PASSWORD,
|
||||
|
@ -105,7 +104,7 @@ async def test_already_configured(hass: HomeAssistant) -> None:
|
|||
)
|
||||
|
||||
assert result["type"] == FlowResultType.FORM
|
||||
assert result["step_id"] == SOURCE_USER
|
||||
assert result["step_id"] == "user"
|
||||
|
||||
with patch(
|
||||
"homeassistant.components.venstar.VenstarColorTouch.update_info",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue