1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +00:00

Bump async-upnp-client to 0.25.0 (#66414)

Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
Steven Looman
2022-02-27 19:29:29 +01:00
committed by GitHub
parent 1c0365a72b
commit dbbb5655e5
23 changed files with 95 additions and 73 deletions

View File

@@ -955,11 +955,11 @@ async def test_async_detect_interfaces_setting_empty_route_linux(
await hass.async_block_till_done()
assert mock_zc.mock_calls[0] == call(
interfaces=[
"2001:db8::",
"fe80::1234:5678:9abc:def0",
"2001:db8::%1",
"fe80::1234:5678:9abc:def0%1",
"192.168.1.5",
"172.16.1.5",
"fe80::dead:beef:dead:beef",
"fe80::dead:beef:dead:beef%3",
],
ip_version=IPVersion.All,
)
@@ -1053,7 +1053,7 @@ async def test_async_detect_interfaces_explicitly_set_ipv6_linux(
await hass.async_block_till_done()
assert mock_zc.mock_calls[0] == call(
interfaces=["192.168.1.5", "fe80::dead:beef:dead:beef"],
interfaces=["192.168.1.5", "fe80::dead:beef:dead:beef%3"],
ip_version=IPVersion.All,
)