mirror of
https://github.com/beetbox/beets.git
synced 2025-12-30 12:32:33 +01:00
fix VFS tests
The configuration was not loaded for these tests because they didn't inherit the common test harness. These failures were hidden on my system because of some kind of dependency on another test.
This commit is contained in:
parent
70b528ed81
commit
963b0d11d6
1 changed files with 2 additions and 1 deletions
|
|
@ -18,8 +18,9 @@ from _common import unittest
|
|||
from beets import library
|
||||
from beets import vfs
|
||||
|
||||
class VFSTest(unittest.TestCase):
|
||||
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'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue