mirror of
https://github.com/beetbox/beets.git
synced 2026-01-06 07:53:40 +01:00
Updated test_importer for Various Artists
All py.test tests should pass now
This commit is contained in:
parent
cc1780f328
commit
7f19194403
1 changed files with 4 additions and 1 deletions
|
|
@ -85,7 +85,10 @@ class AutotagStub(object):
|
|||
id = ' ' + 'M' * distance
|
||||
else:
|
||||
id = ''
|
||||
artist = artist.replace('Tag', 'Applied') + id
|
||||
if artist == None:
|
||||
artist = "Various Artists"
|
||||
else:
|
||||
artist = artist.replace('Tag', 'Applied') + id
|
||||
album = album.replace('Tag', 'Applied') + id
|
||||
|
||||
trackInfos = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue