From f3aab952de02b3bc3b64f537bb027a6a0b0a6e80 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 5 Apr 2022 23:43:50 +0200 Subject: [PATCH] remove empty class --- InvenTree/common/test_notifications.py | 9 --------- 1 file changed, 9 deletions(-) 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('', '', '', '', )