Fix BasePlaybackController with respect to test_next_track_at_end_of_playlist

This commit is contained in:
Thomas Adamcik 2010-04-07 01:45:49 +02:00
parent e6b8e1545a
commit 9d07b540ad

View File

@ -380,7 +380,7 @@ class BasePlaybackControllerTest(object):
@populate_playlist
def test_next_track_at_end_of_playlist(self):
self.playback.play()
for track in self.tracks:
for track in self.tracks[1:]:
self.playback.next()
self.assertEqual(self.playback.next_track, None)