Add missing mock in sharkiq tests (#91325)

This commit is contained in:
epenet 2023-04-13 19:33:38 +02:00 committed by Franck Nijhof
parent 8feab57d59
commit 0e3f462bfb
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

View File

@ -81,6 +81,9 @@ class MockAyla(AylaApi):
async def async_refresh_auth(self):
"""Instead of refreshing auth, just return."""
async def async_sign_out(self):
"""Instead of signing out, just return."""
async def async_list_devices(self) -> list[dict]:
"""Return the device list."""
return [SHARK_DEVICE_DICT]