mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 09:22:55 +01:00
treat default perms as str in permission plugin tests
This commit is contained in:
parent
3112a18463
commit
ef727854f1
1 changed files with 2 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue