This commit is contained in:
Tim Bentley 2013-02-16 10:15:49 +00:00
parent 8e16fc9d77
commit 8ad83b52ba
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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 ')