diff --git a/InvenTree/common/tests.py b/InvenTree/common/tests.py index a8ab25a8d8..dee776f7d9 100644 --- a/InvenTree/common/tests.py +++ b/InvenTree/common/tests.py @@ -515,7 +515,7 @@ class WebhookMessageTests(TestCase): assert message.body == {"this": "is a message"} -class NotificationTest(TestCase): +class NotificationTest(InvenTreeAPITestCase): def test_check_notification_entries(self): diff --git a/InvenTree/plugin/test_plugin.py b/InvenTree/plugin/test_plugin.py index 6a9cf38ecd..c0835c2fb3 100644 --- a/InvenTree/plugin/test_plugin.py +++ b/InvenTree/plugin/test_plugin.py @@ -35,10 +35,6 @@ class InvenTreePluginTests(TestCase): """check if a basic plugin is active""" self.assertEqual(self.plugin.is_active(), False) - def test_mixins(self): - """check if mixins fnc works""" - self.assertEqual(self.named_plugin.mixins(), {}) - class PluginTagTests(TestCase): """ Tests for the plugin extras """