diff --git a/InvenTree/common/test_notifications.py b/InvenTree/common/test_notifications.py index 366850e9d1..af30456c0d 100644 --- a/InvenTree/common/test_notifications.py +++ b/InvenTree/common/test_notifications.py @@ -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('', '', '', '', )