treat default perms as str in permission plugin tests

This commit is contained in:
Johnny Robeson 2016-06-14 01:28:13 -04:00
parent 3112a18463
commit ef727854f1

View file

@ -21,8 +21,8 @@ class PermissionsPluginTest(unittest.TestCase, TestHelper):
self.load_plugins('permissions')
self.config['permissions'] = {
'file': 777,
'dir': 777}
'file': '777',
'dir': '777'}
def tearDown(self):
self.teardown_beets()