From 057c880377fe731fe68f78d2b376f8e219077815 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 4 Dec 2021 03:41:05 +0100 Subject: [PATCH] fix test calls --- InvenTree/common/test_notifications.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"""