From 7016c253a882821f36cdb4bb7cc6662140f3903c Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 4 Dec 2021 04:38:45 +0100 Subject: [PATCH] fix test to trigger --- InvenTree/common/test_notifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/common/test_notifications.py b/InvenTree/common/test_notifications.py index ba4887a456..169e43c09e 100644 --- a/InvenTree/common/test_notifications.py +++ b/InvenTree/common/test_notifications.py @@ -41,7 +41,7 @@ class NotificationTests(BaseNotificationIntegrationTest): METHOD_NAME = 'WrongImplementation1' def get_targets(self): - return [] + return [1, ] with self.assertRaises(NotImplementedError): self._notification_run() @@ -53,7 +53,7 @@ class NotificationTests(BaseNotificationIntegrationTest): METHOD_NAME = 'WrongImplementation2' def get_targets(self): - return [] + return [1, ] with self.assertRaises(NotImplementedError): self._notification_run()