mirror of
https://github.com/beetbox/beets.git
synced 2026-01-08 17:08:12 +01:00
Fix another sys.platform check
This commit is contained in:
parent
8bf1f868fa
commit
2322962cf8
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ class HiddenFileTest(unittest.TestCase):
|
|||
self.assertTrue(hidden.is_hidden(f.name))
|
||||
|
||||
def test_windows_hidden(self):
|
||||
if not sys.platform == 'windows':
|
||||
if not sys.platform == 'win32':
|
||||
self.skipTest('sys.platform is not windows')
|
||||
return
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue