We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d16c95 commit e49fd95Copy full SHA for e49fd95
tests/devices/test_device_manager.py
@@ -60,12 +60,15 @@ async def test_with_device() -> None:
60
assert device.name == "Roborock S7 MaxV"
61
assert device.device_version == DeviceVersion.V1
62
63
+ await device_manager.close()
64
+
65
66
async def test_get_non_existent_device() -> None:
67
"""Test getting a non-existent device."""
68
device_manager = await create_device_manager(USER_DATA, mock_home_data)
69
device = await device_manager.get_device("non_existent_duid")
70
assert device is None
71
72
73
74
async def test_home_data_api_exception() -> None:
0 commit comments