From 038593764722cfb171424eeff085af5338f550e4 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Tue, 14 Jun 2016 23:51:15 -0400 Subject: [PATCH] complete more bytestrings in test_art --- test/test_art.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_art.py b/test/test_art.py index 348835c4c..f88f2f1cf 100644 --- a/test/test_art.py +++ b/test/test_art.py @@ -113,7 +113,7 @@ class FSArtTest(UseThePlugin): next(self.source.get(None, self.extra)) def test_precedence_amongst_correct_files(self): - images = ['front-cover.jpg', 'front.jpg', 'back.jpg'] + images = [b'front-cover.jpg', b'front.jpg', b'back.jpg'] paths = [os.path.join(self.dpath, i) for i in images] for p in paths: _common.touch(p)