From 8ad83b52ba747de808440af5bf8a089e0958d39d Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 16 Feb 2013 10:15:49 +0000 Subject: [PATCH] Text fix --- tests/functional/openlp_core_lib/test_image_manager.py | 2 +- tests/interfaces/openlp_core_ui/test_servicemanager.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 ')