diff --git a/InvenTree/common/test_notifications.py b/InvenTree/common/test_notifications.py index 1200c3be3c..d899dd14a0 100644 --- a/InvenTree/common/test_notifications.py +++ b/InvenTree/common/test_notifications.py @@ -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"""