Skip to content

Commit ce8989f

Browse files
committed
Fix compat issue
1 parent 5a1682b commit ce8989f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_asm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
@pytest.mark.skipUnless(platform.system() == "Windows", "ASM only support Windows now.")
12-
@unittest.skipUnless(platform.system() == "Windows", "ASM only support Windows now.")
12+
@unittest.skipIf(platform.system() != "Windows", "ASM only support Windows now.")
1313
class TestASM(unittest.TestCase):
1414
@classmethod
1515
def setUpClass(cls):

0 commit comments

Comments
 (0)