From 825f55e70ac6ee85e38c952c0f3db771e02560b6 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Thu, 29 Oct 2020 21:45:45 +0000 Subject: [PATCH] Resolves #18: Ensure all matching messages are removed, if enabled --- src/tests/alertify/test_gotify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/alertify/test_gotify.py b/src/tests/alertify/test_gotify.py index c6e4918..81f90b8 100644 --- a/src/tests/alertify/test_gotify.py +++ b/src/tests/alertify/test_gotify.py @@ -55,9 +55,9 @@ class GotifyTest(unittest.TestCase): } ] - self.assertEqual( + self.assertListEqual( self.gotify_client.find_byfingerprint({'fingerprint': 'deadbeefcafebabe'}), - 42, + [42], ) def test_messages(self):