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:
Johnny Robeson 2016-07-05 02:06:13 -04:00
parent 53d1dc905f
commit fa3fe86ac1

View file

@ -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)