From 207e6c29b958e002dfcf5a983f5d315905bb5d08 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 8 Oct 2021 22:24:07 +0200 Subject: [PATCH] fix tests --- InvenTree/plugin/test_plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/plugin/test_plugin.py b/InvenTree/plugin/test_plugin.py index 1bf60a0eb3..4e3248cb26 100644 --- a/InvenTree/plugin/test_plugin.py +++ b/InvenTree/plugin/test_plugin.py @@ -14,9 +14,9 @@ import part.templatetags.plugin_extras as plugin_tags class InvenTreePluginTests(TestCase): """ Tests for InvenTreePlugin """ def setUp(self): - self.plugin = plugins.plugin.InvenTreePlugin() + self.plugin = plugin.plugin.InvenTreePlugin() - class NamedPlugin(plugins.plugin.InvenTreePlugin): + class NamedPlugin(plugin.plugin.InvenTreePlugin): """a named plugin""" PLUGIN_NAME = 'abc123'