mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 04:55:10 +01:00
remove bytes() wrap from test helper fixture
It was already bytes, so this was redundant. It also broke the tests on windows with py3.
This commit is contained in:
parent
53d1dc905f
commit
fa3fe86ac1
1 changed files with 1 additions and 1 deletions
|
|
@ -366,7 +366,7 @@ class TestHelper(object):
|
|||
items = []
|
||||
path = os.path.join(_common.RSRC, util.bytestring_path('full.' + ext))
|
||||
for i in range(track_count):
|
||||
item = Item.from_path(bytes(path))
|
||||
item = Item.from_path(path)
|
||||
item.album = u'\u00e4lbum' # Check unicode paths
|
||||
item.title = u't\u00eftle {0}'.format(i)
|
||||
item.add(self.lib)
|
||||
|
|
|
|||
Loading…
Reference in a new issue