From 5b9f84a90fc3ed57dfe9f7c93432fb1a0b54744f Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 5 Apr 2022 01:30:12 +0200 Subject: [PATCH] fix test --- InvenTree/common/test_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/common/test_notifications.py b/InvenTree/common/test_notifications.py index 30d4713a3e..6eec11e056 100644 --- a/InvenTree/common/test_notifications.py +++ b/InvenTree/common/test_notifications.py @@ -77,7 +77,7 @@ class BaseNotificationTests(BaseNotificationIntegrationTest): def send(self, target): raise KeyError('This could be any error') - self._notification_run() + self._notification_run(ErrorImplementation) class BulkNotificationMethodTests(BaseNotificationIntegrationTest):