diff --git a/tests/functional/openlp_core_lib/test_image_manager.py b/tests/functional/openlp_core_lib/test_image_manager.py index a8fcdfa59..d13c82c04 100644 --- a/tests/functional/openlp_core_lib/test_image_manager.py +++ b/tests/functional/openlp_core_lib/test_image_manager.py @@ -41,7 +41,7 @@ class TestImageManager(TestCase): image = self.image_manager.get_image(TEST_PATH, u'church.jpg') # THEN returned record is a type of image - self.assertEqual(isinstance(image, QtGui.QImage), True, u'The returned field is an image') + self.assertEqual(isinstance(image, QtGui.QImage), True, u'The returned object should be a QImage') # WHEN the image is retrieved has not been loaded # THEN a KeyError is thrown diff --git a/tests/interfaces/openlp_core_ui/test_servicemanager.py b/tests/interfaces/openlp_core_ui/test_servicemanager.py index 8ecf3271d..778387ab1 100644 --- a/tests/interfaces/openlp_core_ui/test_servicemanager.py +++ b/tests/interfaces/openlp_core_ui/test_servicemanager.py @@ -40,4 +40,4 @@ class TestStartNoteDialog(TestCase): # WHEN I have an empty display # THEN the count of items should be zero self.assertEqual(self.service_manager.service_manager_list.topLevelItemCount(), 0, - u'There the service manager list is not empty ') + u'The service manager list is not empty ')