mirror of
https://github.com/beetbox/beets.git
synced 2026-01-08 17:08:12 +01:00
Fix a sys.platform check in hidden test
This commit is contained in:
parent
60b4172a59
commit
746aecad2b
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ class HiddenFileTest(unittest.TestCase):
|
|||
self.assertTrue(hidden.is_hidden(f.name))
|
||||
|
||||
def test_other_hidden(self):
|
||||
if sys.platform == 'darwin' or sys.platform == 'windows':
|
||||
if sys.platform == 'darwin' or sys.platform == 'win32':
|
||||
self.skipTest('sys.platform is known')
|
||||
return
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue