Skip to content

Commit 6d8272a

Browse files
committed
feat: Use get_home_data_v3 for tests
1 parent 07f1530 commit 6d8272a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/devices/test_device_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ async def home_data_api_exception() -> HomeData:
8686
async def test_create_home_data_api_exception() -> None:
8787
"""Test that exceptions from the home data API are propagated through the wrapper."""
8888

89-
with patch("roborock.devices.device_manager.RoborockApiClient.get_home_data") as mock_get_home_data:
89+
with patch("roborock.devices.device_manager.RoborockApiClient.get_home_data_v3") as mock_get_home_data:
9090
mock_get_home_data.side_effect = RoborockException("Test exception")
9191
api = create_home_data_api(USER_DATA, mock_get_home_data)
9292

0 commit comments

Comments
 (0)