From e7793fc9fa837541e41c694e5904a67ddd08865c Mon Sep 17 00:00:00 2001 From: Phill Ridout Date: Tue, 20 Jan 2015 21:45:37 +0000 Subject: [PATCH] Pep fixes --- tests/functional/openlp_plugins/bibles/test_lib.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/functional/openlp_plugins/bibles/test_lib.py b/tests/functional/openlp_plugins/bibles/test_lib.py index c596f9513..f0c17f4da 100644 --- a/tests/functional/openlp_plugins/bibles/test_lib.py +++ b/tests/functional/openlp_plugins/bibles/test_lib.py @@ -39,9 +39,8 @@ class TestLib(TestCase): """ # GIVEN: A list of expected separators separators = {'sep_r': '\\s*(?:e)\\s*', 'sep_e_default': 'end', 'sep_v_display': 'w', 'sep_l_display': 'r', - 'sep_v_default': ':|v|V|verse|verses', 'sep_l': '\\s*(?:r)\\s*', 'sep_l_default': ',|and', - 'sep_e': '\\s*(?:t)\\s*', 'sep_v': '\\s*(?:w)\\s*', 'sep_r_display': 'e', - 'sep_r_default': '-|to'} + 'sep_v_default': ':|v|V|verse|verses', 'sep_l': '\\s*(?:r)\\s*', 'sep_l_default': ',|and', + 'sep_e': '\\s*(?:t)\\s*', 'sep_v': '\\s*(?:w)\\s*', 'sep_r_display': 'e', 'sep_r_default': '-|to'} def side_effect(): lib.REFERENCE_SEPARATORS = separators