mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 01:07:10 +00:00
Update xknx to 0.19.0 (#64379)
This commit is contained in:
parent
4cd222e70a
commit
29baad8848
@ -4,7 +4,7 @@
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/knx",
|
||||
"requirements": [
|
||||
"xknx==0.18.15"
|
||||
"xknx==0.19.0"
|
||||
],
|
||||
"codeowners": [
|
||||
"@Julius2342",
|
||||
|
@ -2490,7 +2490,7 @@ xbox-webapi==2.0.11
|
||||
xboxapi==2.0.1
|
||||
|
||||
# homeassistant.components.knx
|
||||
xknx==0.18.15
|
||||
xknx==0.19.0
|
||||
|
||||
# homeassistant.components.bluesound
|
||||
# homeassistant.components.fritz
|
||||
|
@ -1518,7 +1518,7 @@ wolf_smartset==0.1.11
|
||||
xbox-webapi==2.0.11
|
||||
|
||||
# homeassistant.components.knx
|
||||
xknx==0.18.15
|
||||
xknx==0.19.0
|
||||
|
||||
# homeassistant.components.bluesound
|
||||
# homeassistant.components.fritz
|
||||
|
@ -60,13 +60,13 @@ class KNXTestKit:
|
||||
|
||||
def fish_xknx(*args, **kwargs):
|
||||
"""Get the XKNX object from the constructor call."""
|
||||
self.xknx = args[0]
|
||||
self.xknx = kwargs["xknx"]
|
||||
# disable rate limiter for tests (before StateUpdater starts)
|
||||
self.xknx.rate_limit = 0
|
||||
return DEFAULT
|
||||
|
||||
with patch(
|
||||
"xknx.xknx.KNXIPInterface",
|
||||
"xknx.xknx.knx_interface_factory",
|
||||
return_value=knx_ip_interface_mock(),
|
||||
side_effect=fish_xknx,
|
||||
):
|
||||
|
Loading…
x
Reference in New Issue
Block a user