mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-16 12:05:53 +00:00
fix test to trigger
This commit is contained in:
@ -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()
|
||||
|
Reference in New Issue
Block a user