From f83c77e7ea2c469754dd9f02db99fd259a2791e9 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Mon, 15 Apr 2019 22:48:09 +0200 Subject: [PATCH] Fix plugin error message --- src/Test/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test/conftest.py b/src/Test/conftest.py index f0505b2b..79389d65 100644 --- a/src/Test/conftest.py +++ b/src/Test/conftest.py @@ -79,7 +79,7 @@ config.data_dir = TEST_DATA_PATH # Use test data for unittests os.chdir(os.path.abspath(os.path.dirname(__file__) + "/../..")) # Set working dir all_loaded = PluginManager.plugin_manager.loadPlugins() -assert all_loaded, "There was error loading plugins" +assert all_loaded, "Not all plugin loaded successfully" config.loadPlugins() config.parse(parse_config=False) # Parse again to add plugin configuration options