This commit is contained in:
Samuel Mehrbrodt 2014-05-13 11:09:42 +02:00
parent 6eb2d4f49d
commit a1e2e92132

View File

@ -90,8 +90,6 @@ class TestDB(TestCase):
song = Song()
song.authors_songs = []
author = Author()
author.first_name = "Max"
author.last_name = "Mustermann"
song.add_author(author)
# WHEN: We remove the author
@ -108,8 +106,6 @@ class TestDB(TestCase):
song = Song()
song.authors_songs = []
author = Author()
author.first_name = "Max"
author.last_name = "Mustermann"
song.add_author(author)
song.add_author(author, AuthorType.Translation)