From 592ac37436e0bd84156590176f66801fd706eeef Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Thu, 13 Apr 2023 19:33:38 +0200 Subject: [PATCH] Add missing mock in sharkiq tests (#91325) --- tests/components/sharkiq/test_vacuum.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/components/sharkiq/test_vacuum.py b/tests/components/sharkiq/test_vacuum.py index aa43f324bba..84bda73e957 100644 --- a/tests/components/sharkiq/test_vacuum.py +++ b/tests/components/sharkiq/test_vacuum.py @@ -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]