From 3b4bf17d1ab101b269fff3d83dc7ed94be8b828b Mon Sep 17 00:00:00 2001 From: Peter Kessen Date: Sun, 28 Feb 2016 13:06:18 +0100 Subject: [PATCH] Removed unicode_literals from test_vfs --- test/test_vfs.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/test_vfs.py b/test/test_vfs.py index e11e04780..d9536b9d5 100644 --- a/test/test_vfs.py +++ b/test/test_vfs.py @@ -14,8 +14,7 @@ # included in all copies or substantial portions of the Software. """Tests for the virtual filesystem builder..""" -from __future__ import (division, absolute_import, print_function, - unicode_literals) +from __future__ import (division, absolute_import, print_function) from test import _common from test._common import unittest @@ -27,8 +26,8 @@ class VFSTest(_common.TestCase): def setUp(self): super(VFSTest, self).setUp() self.lib = library.Library(':memory:', path_formats=[ - ('default', 'albums/$album/$title'), - ('singleton:true', 'tracks/$artist/$title'), + (u'default', u'albums/$album/$title'), + (u'singleton:true', u'tracks/$artist/$title'), ]) self.lib.add(_common.item()) self.lib.add_album([_common.item()])