We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 432bbb6 commit 8f25a60Copy full SHA for 8f25a60
1 file changed
tests/devices/traits/v1/test_maps.py
@@ -64,7 +64,7 @@ async def test_refresh_maps_trait(
64
# Setup mock to return the sample multi maps list
65
mock_rpc_channel.send_command.side_effect = [
66
mock_data.STATUS, # Initial status fetch
67
- MULTI_MAP_LIST_DATA
+ MULTI_MAP_LIST_DATA,
68
]
69
await status_trait.refresh()
70
# Populating the status information gives us the current map
@@ -99,7 +99,7 @@ async def test_refresh_maps_trait(
99
assert mock_rpc_channel.send_command.call_count == 2
100
mock_rpc_channel.send_command.assert_any_call(RoborockCommand.GET_STATUS)
101
mock_rpc_channel.send_command.assert_any_call(RoborockCommand.GET_MULTI_MAPS_LIST)
102
-
+
103
104
async def test_set_current_map(
105
status_trait: StatusTrait,
0 commit comments