mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
Update xknx to 0.18.14 (#62411)
Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
parent
6a81821399
commit
6cf9f1a0cc
@ -4,7 +4,7 @@
|
|||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/knx",
|
"documentation": "https://www.home-assistant.io/integrations/knx",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"xknx==0.18.13"
|
"xknx==0.18.14"
|
||||||
],
|
],
|
||||||
"codeowners": [
|
"codeowners": [
|
||||||
"@Julius2342",
|
"@Julius2342",
|
||||||
|
@ -2460,7 +2460,7 @@ xbox-webapi==2.0.11
|
|||||||
xboxapi==2.0.1
|
xboxapi==2.0.1
|
||||||
|
|
||||||
# homeassistant.components.knx
|
# homeassistant.components.knx
|
||||||
xknx==0.18.13
|
xknx==0.18.14
|
||||||
|
|
||||||
# homeassistant.components.bluesound
|
# homeassistant.components.bluesound
|
||||||
# homeassistant.components.fritz
|
# homeassistant.components.fritz
|
||||||
|
@ -1462,7 +1462,7 @@ wolf_smartset==0.1.11
|
|||||||
xbox-webapi==2.0.11
|
xbox-webapi==2.0.11
|
||||||
|
|
||||||
# homeassistant.components.knx
|
# homeassistant.components.knx
|
||||||
xknx==0.18.13
|
xknx==0.18.14
|
||||||
|
|
||||||
# homeassistant.components.bluesound
|
# homeassistant.components.bluesound
|
||||||
# homeassistant.components.fritz
|
# homeassistant.components.fritz
|
||||||
|
@ -28,7 +28,15 @@ from tests.common import MockConfigEntry
|
|||||||
|
|
||||||
def _gateway_descriptor(ip: str, port: int) -> GatewayDescriptor:
|
def _gateway_descriptor(ip: str, port: int) -> GatewayDescriptor:
|
||||||
"""Get mock gw descriptor."""
|
"""Get mock gw descriptor."""
|
||||||
return GatewayDescriptor("Test", ip, port, "eth0", "127.0.0.1", True)
|
return GatewayDescriptor(
|
||||||
|
"Test",
|
||||||
|
ip,
|
||||||
|
port,
|
||||||
|
"eth0",
|
||||||
|
"127.0.0.1",
|
||||||
|
supports_routing=True,
|
||||||
|
supports_tunnelling=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
async def test_user_single_instance(hass):
|
async def test_user_single_instance(hass):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user