Fix bad return in Gotify method

This commit is contained in:
Scott Wallace 2021-05-25 10:06:02 +01:00
parent d8a82c1334
commit 1e0099400d
2 changed files with 3 additions and 3 deletions

View file

@ -99,7 +99,7 @@ class Gotify:
logging.warning(
'No client key is configured. No messages could be retrieved.'
)
return []
return dict()
logging.debug('Fetching existing messages from Gotify')
return self._call('GET', '/message')['json'].get('messages', [])

View file

@ -62,9 +62,9 @@ class GotifyTest(unittest.TestCase):
def test_messages(self):
"""Test"""
self.assertListEqual(
self.assertDictEqual(
self.gotify_client.messages(),
[],
dict(),
)
@patch('http.client.HTTPConnection.request')