From 36276d4fac11a519b7790e8792748e302094622f Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 23 Feb 2018 16:22:48 +0000 Subject: [PATCH] fix tests --- tests/functional/openlp_plugins/songs/test_mediaitem.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/functional/openlp_plugins/songs/test_mediaitem.py b/tests/functional/openlp_plugins/songs/test_mediaitem.py index 9af310e26..3cdd8235d 100644 --- a/tests/functional/openlp_plugins/songs/test_mediaitem.py +++ b/tests/functional/openlp_plugins/songs/test_mediaitem.py @@ -431,10 +431,12 @@ class TestMediaItem(TestCase, TestMixin): # GIVEN: A Song and a Service Item song = Song() song.title = 'My Song' + song.alternate_title = "" song.copyright = 'My copyright' song.authors_songs = [] song.songbook_entries = [] song.ccli_number = '' + song.topics = None book1 = MagicMock() book1.name = "My songbook" book2 = MagicMock()