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'