fix test calls

This commit is contained in:
Matthias 2021-12-04 03:41:05 +01:00
parent 1cfc03d698
commit 057c880377
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -24,15 +24,15 @@ class NotificationTests(BaseNotificationIntegrationTest):
# no send / send bulk
with self.assertRaises(NotImplementedError):
FalseNotificationMethod('', '', '')
FalseNotificationMethod('', '', '', '', )
# no gathering
with self.assertRaises(NotImplementedError):
AnotherFalseNotificationMethod('', '', '')
AnotherFalseNotificationMethod('', '', '', '', )
# no METHOD_NAME
with self.assertRaises(NotImplementedError):
NoNameNotificationMethod('', '', '')
NoNameNotificationMethod('', '', '', '', )
def test_SingleNotificationMethod(self):
"""ensure the implementation requirements are tested"""