From 53d1dc905f35f2bea5f4aaf4af9491e1726e442a Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Mon, 4 Jul 2016 21:53:34 -0400 Subject: [PATCH] add a missing bytestring_path in importer test --- test/test_importer.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test_importer.py b/test/test_importer.py index b879290ad..29487ec26 100644 --- a/test/test_importer.py +++ b/test/test_importer.py @@ -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):