From d37c5639e03fd5b0db2d9a110eead4c04dd44887 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Wed, 23 Oct 2019 12:40:20 +0200 Subject: [PATCH] Fix test --- tests/cli/plugins/test_example.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cli/plugins/test_example.py b/tests/cli/plugins/test_example.py index 0f9d21d..5de3c2d 100644 --- a/tests/cli/plugins/test_example.py +++ b/tests/cli/plugins/test_example.py @@ -1,9 +1,9 @@ """Tests for Example Plugin.""" -from wo.utils import test +from wo.utils import WOTestCase -class ExamplePluginTestCase(test.WOTestCase): +class ExamplePluginTestCase(WOTestCase): def test_load_example_plugin(self): self.app.setup() self.app.plugin.load_plugin('example')