File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ def light(self) -> bool:
255255 )
256256
257257 @property # type: ignore
258- @guard_from_missing_data (True )
258+ @guard_from_missing_data (False )
259259 def offline (self ) -> bool :
260260 """Return whether the system is offline.
261261
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ async def test_missing_property(
100100 )
101101 systems = await simplisafe .async_get_systems ()
102102 system = systems [TEST_SYSTEM_ID ]
103- assert system .offline is True
103+ assert system .offline is False
104104 assert any (
105105 "SimpliSafe didn't return data for property: offline" in e .message
106106 for e in caplog .records
Original file line number Diff line number Diff line change 11"""Define tests for v3 System objects."""
2- # pylint: disable=too-many-arguments,unused-argument
2+ # pylint: disable=protected-access, too-many-arguments,unused-argument
33from datetime import datetime
44import logging
55
You can’t perform that action at this time.
0 commit comments