From b20b114a7b962890910cb11bb9d4e6ca6292d314 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 1 Nov 2014 11:06:17 +0000 Subject: [PATCH] test fix --- tests/functional/openlp_plugins/images/test_imagetab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/openlp_plugins/images/test_imagetab.py b/tests/functional/openlp_plugins/images/test_imagetab.py index 7d6ef10ff..fade284a4 100644 --- a/tests/functional/openlp_plugins/images/test_imagetab.py +++ b/tests/functional/openlp_plugins/images/test_imagetab.py @@ -81,7 +81,7 @@ class TestImageMediaItem(TestCase, TestMixin): self.initial_color = '#999999' # WHEN: the save is invoked self.form.save() - #THEN: the post process should not be requested + # THEN: the post process should not be requested self.assertEqual(0, self.form.settings_form.register_post_process.call_count, 'Image Post processing should not have been requested') @@ -93,6 +93,6 @@ class TestImageMediaItem(TestCase, TestMixin): self.form.background_color = '#999999' # WHEN: the save is invoked self.form.save() - #THEN: the post process should be requested + # THEN: the post process should be requested self.assertEqual(1, self.form.settings_form.register_post_process.call_count, 'Image Post processing should have been requested') \ No newline at end of file