From 79204ea7238bbe64effba62efa81b321fdfd3b6f Mon Sep 17 00:00:00 2001 From: Phill Ridout Date: Thu, 19 Feb 2015 22:04:54 +0000 Subject: [PATCH] PEP fix --- tests/functional/openlp_core_common/test_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/openlp_core_common/test_settings.py b/tests/functional/openlp_core_common/test_settings.py index ee305c600..04a98b352 100644 --- a/tests/functional/openlp_core_common/test_settings.py +++ b/tests/functional/openlp_core_common/test_settings.py @@ -128,7 +128,7 @@ class TestSettings(TestCase, TestMixin): """ # GIVEN: A patched __default_settings__ dictionary with patch.dict(Settings.__default_settings__, - {'test/setting 1': 1, 'test/setting 2': 2, 'test/setting 3': 3}, True): + {'test/setting 1': 1, 'test/setting 2': 2, 'test/setting 3': 3}, True): # WHEN: Calling extend_default_settings Settings.extend_default_settings({'test/setting 3': 4, 'test/extended 1': 1, 'test/extended 2': 2})