Fix test_save test

This commit is contained in:
Thomas Adamcik 2010-04-26 23:07:01 +02:00
parent 3b5e94b4a4
commit 4f3b2cd45a

View File

@ -959,6 +959,6 @@ class BaseStoredPlaylistsControllerTest(object):
self.stored.rename(Playlist(), 'test2')
def test_save(self):
playlist = Playlist('test')
playlist = Playlist(name='test')
self.stored.save(playlist)
self.assert_(playlist in self.stored.playlists)