remove empty class

This commit is contained in:
Matthias 2022-04-05 23:43:50 +02:00
parent 47f9bd911a
commit f3aab952de
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -38,15 +38,6 @@ class BaseNotificationTests(BaseNotificationIntegrationTest):
def send(self):
"""a comment so we do not need a pass"""
class WrongDeliveryImplementation(SingleNotificationMethod):
METHOD_NAME = 'WrongDeliveryImplementation'
def get_targets(self):
return [1, ]
def send(self, target):
return False
# no send / send bulk
with self.assertRaises(NotImplementedError):
FalseNotificationMethod('', '', '', '', )