mirror of
https://github.com/beetbox/beets.git
synced 2026-02-24 00:02:20 +01:00
add a missing bytestring_path in importer test
This commit is contained in:
parent
cae6e128e4
commit
53d1dc905f
1 changed files with 4 additions and 1 deletions
|
|
@ -348,7 +348,10 @@ class NonAutotaggedImportTest(_common.TestCase, ImportHelper):
|
|||
)
|
||||
self.assertExists(filename)
|
||||
self.assertTrue(os.path.islink(filename))
|
||||
self.assert_equal_path(os.readlink(filename), mediafile.path)
|
||||
self.assert_equal_path(
|
||||
util.bytestring_path(os.readlink(filename)),
|
||||
mediafile.path
|
||||
)
|
||||
|
||||
|
||||
def create_archive(session):
|
||||
|
|
|
|||
Loading…
Reference in a new issue