Skip to content
Snippets Groups Projects
Unverified Commit c4fb4eb6 authored by epenet's avatar epenet Committed by GitHub
Browse files

Use common reconfigure string in bryant_evolution (#127561)

parent a9495ace
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,6 @@ import voluptuous as vol
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
from homeassistant.const import CONF_FILENAME
from homeassistant.helpers.typing import UNDEFINED
from .const import CONF_SYSTEM_ZONE, DOMAIN
......@@ -74,15 +73,13 @@ class BryantConfigFlow(ConfigFlow, domain=DOMAIN):
if user_input is not None:
system_zone = await _enumerate_sz(user_input[CONF_FILENAME])
if len(system_zone) != 0:
our_entry = self._get_reconfigure_entry()
return self.async_update_reload_and_abort(
entry=our_entry,
self._get_reconfigure_entry(),
data={
CONF_FILENAME: user_input[CONF_FILENAME],
CONF_SYSTEM_ZONE: system_zone,
},
unique_id=UNDEFINED,
reason="reconfigured",
reason="reconfigure_successful",
)
errors["base"] = "cannot_connect"
return self.async_show_form(
......
......@@ -18,7 +18,8 @@
"unknown": "[%key:common::config_flow::error::unknown%]"
},
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"reconfigure_successful": "[%key:common::config_flow::abort::reconfigure_successful%]"
}
},
"exceptions": {
......
......@@ -154,7 +154,7 @@ async def test_reconfigure(
)
await hass.async_block_till_done()
assert result["type"] is FlowResultType.ABORT, result
assert result["reason"] == "reconfigured"
assert result["reason"] == "reconfigure_successful"
config_entry = hass.config_entries.async_entries()[0]
assert config_entry.data[CONF_SYSTEM_ZONE] == [
(1, 1),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment