From 5d70584cfad754b76f331d75a7636715b9413575 Mon Sep 17 00:00:00 2001 From: STEPHANVS Date: Sat, 24 Jul 2021 13:17:05 +0200 Subject: [PATCH] Pipeline fix --- tests/openlp_plugins/songs/test_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/openlp_plugins/songs/test_lib.py b/tests/openlp_plugins/songs/test_lib.py index 1116fbcc0..88d5838c1 100644 --- a/tests/openlp_plugins/songs/test_lib.py +++ b/tests/openlp_plugins/songs/test_lib.py @@ -359,7 +359,7 @@ def test_transpose_lyrics(mocked_transpose_verse, mock_settings): '---[Verse:2]---\n'\ 'I once was lost but now I\'m found.' mock_settings.value.return_value = 'english' - + mocked_transpose_verse.return_value = ['', None] # WHEN: Transposing the lyrics transpose_lyrics(lyrics, 1)