From 023cd53b1a36fcf6b7a3d0d929354fd26fcfe4b7 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 10 Dec 2021 00:22:25 +0100 Subject: [PATCH] fix test that failing deliveries do not block --- InvenTree/common/test_notifications.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/InvenTree/common/test_notifications.py b/InvenTree/common/test_notifications.py index 702720ffd1..3c0009fb51 100644 --- a/InvenTree/common/test_notifications.py +++ b/InvenTree/common/test_notifications.py @@ -61,7 +61,8 @@ class BaseNotificationTests(BaseNotificationIntegrationTest): with self.assertRaises(NotImplementedError): AnotherFalseNotificationMethod('', '', '', {'name': 1, 'message': 2, }, ) - # cover faling delivery + def test_failing_passing(self): + # cover failing delivery self._notification_run() def test_errors_passing(self):