Fix tests

This commit is contained in:
Matthias 2022-05-06 02:26:58 +02:00
parent 9a9a7e0ff4
commit 0d0b713f6e
No known key found for this signature in database
GPG Key ID: AB6D0E6C4CB65093
2 changed files with 1 additions and 5 deletions

View File

@ -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):

View File

@ -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 """