comments: updated comments

This commit is contained in:
Andreas Preikschat 2014-03-31 17:36:11 +02:00
parent 3260de7b7c
commit 4da90f0c6a
1 changed files with 4 additions and 4 deletions

View File

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