1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 20:35:55 +00:00

Fix dynamic port pytest (#5940)

This commit is contained in:
Stefan Agner
2025-06-11 14:10:31 +01:00
committed by GitHub
parent 697515b81f
commit fd0b894d6a

View File

@@ -64,10 +64,10 @@ async def test_dynamic_ports(coresys: CoreSys):
assert port_test2
assert port_test2 != port_test1
assert port_test2 > 62000
assert port_test2 < 65500
assert port_test1 > 62000
assert port_test1 < 65500
assert port_test2 >= 62000
assert port_test2 <= 65500
assert port_test1 >= 62000
assert port_test1 <= 65500
async def test_ingress_save_data(coresys: CoreSys, tmp_supervisor_data: Path):