Add missing mock in sharkiq tests (#91325)

This commit is contained in:
epenet 2023-04-13 19:33:38 +02:00 committed by GitHub
parent 445b823232
commit 592ac37436
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,6 +75,9 @@ class MockAyla(AylaApi):
async def async_sign_in(self):
"""Instead of signing in, 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]