From 7464b138cf97cf15a7351615d55da0b06d8d1c1f Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 1 Jul 2012 14:16:22 -0700 Subject: [PATCH] fix tests broken by TrackInfo.index --- test/test_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_ui.py b/test/test_ui.py index 8180d5ecc..bca7e6a92 100644 --- a/test/test_ui.py +++ b/test/test_ui.py @@ -656,7 +656,7 @@ class ShowChangeTest(unittest.TestCase): items[0].path = '/path/to/file.mp3' info = autotag.AlbumInfo( 'the album', 'album id', 'the artist', 'artist id', [ - autotag.TrackInfo('the title', 'track id') + autotag.TrackInfo('the title', 'track id', index=1) ]) return items, info