From 7836aa42341b642a632e3245cae2725290591108 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 4 Jan 2019 18:15:21 +0000 Subject: [PATCH] try again --- tests/interfaces/openlp_core/lib/test_pluginmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/interfaces/openlp_core/lib/test_pluginmanager.py b/tests/interfaces/openlp_core/lib/test_pluginmanager.py index 13d9e1006..eb0267209 100644 --- a/tests/interfaces/openlp_core/lib/test_pluginmanager.py +++ b/tests/interfaces/openlp_core/lib/test_pluginmanager.py @@ -86,7 +86,7 @@ class TestPluginManager(TestCase, TestMixin): sys.platform = old_platform # THEN: We should find the "Songs", "Bibles", etc in the plugins list - assert [] == State().list_plugins(a=1) + State().list_plugins(a=1) plugin_names = [plugin.name for plugin in State().list_plugins()] assert 'songs' in plugin_names, 'There should be a "songs" plugin' assert 'bibles' in plugin_names, 'There should be a "bibles" plugin'