Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add V2C Trydan EVSE integration #103478

Merged
merged 15 commits into from
Nov 7, 2023
Prev Previous commit
Next Next commit
update title
  • Loading branch information
dgomes committed Nov 6, 2023
commit e05ff0b34c87563f15eaf4388a8e8405b839fb1f
4 changes: 2 additions & 2 deletions tests/components/v2c/test_config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async def test_form(hass: HomeAssistant, mock_setup_entry: AsyncMock) -> None:
await hass.async_block_till_done()

assert result2["type"] == FlowResultType.CREATE_ENTRY
assert result2["title"] == "1.1.1.1"
assert result2["title"] == "EVSE 1.1.1.1"
assert result2["data"] == {
"host": "1.1.1.1",
}
Expand Down Expand Up @@ -70,7 +70,7 @@ async def test_form_cannot_connect(hass: HomeAssistant) -> None:
await hass.async_block_till_done()

assert result3["type"] == FlowResultType.CREATE_ENTRY
assert result3["title"] == "1.1.1.1"
assert result3["title"] == "EVSE 1.1.1.1"
assert result3["data"] == {
"host": "1.1.1.1",
}