From 805f4e801f36cf73be8735daf601647b45b55770 Mon Sep 17 00:00:00 2001 From: soergeld Date: Mon, 27 Apr 2020 11:31:39 +0200 Subject: [PATCH] typo in tests --- 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 3b9ff3e67..b894a65f3 100644 --- a/test/test_autotag.py +++ b/test/test_autotag.py @@ -106,7 +106,7 @@ def _make_item(title, track, artist=u'some artist'): def _make_trackinfo(): return [ - TrackInfo(title=u'one', track_id=one, artist=u'some artist', length=1, index=1), + TrackInfo(title=u'one', track_id=None, artist=u'some artist', length=1, index=1), TrackInfo(title=u'two', track_id=None, artist=u'some artist', length=1, index=2), TrackInfo(title=u'three', track_id=None, artist=u'some artist', length=1, index=3), ]