diff --git a/tests/functional/openlp_core_lib/test_serviceitem.py b/tests/functional/openlp_core_lib/test_serviceitem.py index f970eba22..fdeb081b3 100644 --- a/tests/functional/openlp_core_lib/test_serviceitem.py +++ b/tests/functional/openlp_core_lib/test_serviceitem.py @@ -278,7 +278,7 @@ class TestServiceItem(TestCase): # THEN: We should get back a converted service item assert service_item.is_valid is True, u'The new service item should be valid' - assert service_item.processor is not None, u'The Processor should have been set' + assert service_item.processor == u'VLC', u'The Processor should have been set' assert service_item.title is not None, u'The title should be set to a value' assert service_item.is_capable(ItemCapabilities.HasDetailedTitleDisplay) is False, \ u'The Capability should have been removed'