mirror of
https://github.com/beetbox/beets.git
synced 2025-12-16 05:34:47 +01:00
Fix a hard-coded path separator in a test
This commit is contained in:
parent
f400a2431e
commit
f79daacb7b
1 changed files with 2 additions and 1 deletions
|
|
@ -43,7 +43,8 @@ class ImportfeedsTestTest(unittest.TestCase):
|
|||
|
||||
def test_playlist_in_subdir(self):
|
||||
config['importfeeds']['formats'] = 'm3u'
|
||||
config['importfeeds']['m3u_name'] = 'subdir/imported.m3u'
|
||||
config['importfeeds']['m3u_name'] = \
|
||||
os.path.join('subdir', 'imported.m3u')
|
||||
album = Album(album='album/name', id=1)
|
||||
item_path = os.path.join('path', 'to', 'item')
|
||||
item = Item(title='song', album_id=1, path=item_path)
|
||||
|
|
|
|||
Loading…
Reference in a new issue