From e4dcdfe609ff913988cbcb4b7141c497a596c49c Mon Sep 17 00:00:00 2001 From: D Andrew Reynhout Date: Mon, 20 Apr 2015 22:17:08 -0400 Subject: [PATCH] Fix autotag test: duplicated assertion --- test/test_autotag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_autotag.py b/test/test_autotag.py index 6393a0f2f5..59c564066c 100644 --- a/test/test_autotag.py +++ b/test/test_autotag.py @@ -730,7 +730,7 @@ def test_album_artist_overrides_empty_track_artist(self): my_info = copy.deepcopy(self.info) self._apply(info=my_info) self.assertEqual(self.items[0].artist, 'artistNew') - self.assertEqual(self.items[0].artist, 'artistNew') + self.assertEqual(self.items[1].artist, 'artistNew') def test_album_artist_overriden_by_nonempty_track_artist(self): my_info = copy.deepcopy(self.info)