diff --git a/InvenTree/common/tests.py b/InvenTree/common/tests.py index 119edaabd0..5b0249272e 100644 --- a/InvenTree/common/tests.py +++ b/InvenTree/common/tests.py @@ -128,3 +128,4 @@ class NotificationTests(TestCase): with self.assertRaises(NotImplementedError): AnotherFalseNotificationMethod('', '', '') +# A integration test for notifications is provided in test_part.PartNotificationTest diff --git a/InvenTree/part/test_part.py b/InvenTree/part/test_part.py index 7f9b03c210..c17084c0c7 100644 --- a/InvenTree/part/test_part.py +++ b/InvenTree/part/test_part.py @@ -468,7 +468,7 @@ class PartSubscriptionTests(TestCase): class PartNotificationTest(TestCase): - """ Tests for the Part model """ + """ Integration test for part notifications """ fixtures = [ 'location',