From ab3fd38551044f4530eafb2dda88b54dbca23522 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Wed, 3 Jul 2013 17:34:40 +0100 Subject: [PATCH] Fix broken test --- tests/functional/openlp_core_lib/test_serviceitem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'