From 4da90f0c6a2d830783655cf029cbb314e33924ee Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Mon, 31 Mar 2014 17:36:11 +0200 Subject: [PATCH] comments: updated comments --- tests/functional/openlp_plugins/songs/test_lib.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/functional/openlp_plugins/songs/test_lib.py b/tests/functional/openlp_plugins/songs/test_lib.py index 2683770c6..67d54d3f0 100644 --- a/tests/functional/openlp_plugins/songs/test_lib.py +++ b/tests/functional/openlp_plugins/songs/test_lib.py @@ -98,7 +98,7 @@ class TestLib(TestCase): # WHEN: We compare those songs for equality. result = songs_probably_equal((self.song1, self.song2)) - # THEN: The result should be True. + # THEN: The result should be a tuple.. assert result == (self.song1, self.song2), 'The result should be the tuble of songs' def songs_probably_equal_short_song_test(self): @@ -112,7 +112,7 @@ class TestLib(TestCase): # WHEN: We compare those songs for equality. result = songs_probably_equal((self.song1, self.song2)) - # THEN: The result should be True. + # THEN: The result should be a tuple.. assert result == (self.song1, self.song2), 'The result should be the tuble of songs' def songs_probably_equal_error_song_test(self): @@ -126,7 +126,7 @@ class TestLib(TestCase): # WHEN: We compare those songs for equality. result = songs_probably_equal((self.song1, self.song2)) - # THEN: The result should be True. + # THEN: The result should be a tuple of songs.. assert result == (self.song1, self.song2), 'The result should be the tuble of songs' def songs_probably_equal_different_song_test(self): @@ -140,7 +140,7 @@ class TestLib(TestCase): # WHEN: We compare those songs for equality. result = songs_probably_equal((self.song1, self.song2)) - # THEN: The result should be False. + # THEN: The result should be Nonw. assert result is None, 'The result should be None' def remove_typos_beginning_test(self):