We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a676629 commit 756a96dCopy full SHA for 756a96d
graalpython/com.oracle.graal.python.test/src/tests/test_type.py
@@ -38,7 +38,7 @@
38
# SOFTWARE.
39
40
import sys
41
-import unittest
+from unittest import skipIf
42
43
44
def assert_raises(err, fn, *args, **kwargs):
@@ -188,8 +188,8 @@ def test_isinstance_non_type():
188
assert isinstance(1, typing.AbstractSet) is False
189
190
191
-@unittest.skipIf(sys.implementation.name == 'cpython' and sys.version_info[0:2] < (3, 8), "skipping for cPython versions < 3.8")
192
-class test_flags():
+@skipIf(sys.implementation.name == 'cpython' and sys.version_info[0:2] < (3, 8), "skipping for cPython versions < 3.8")
+def test_flags():
193
import functools
194
195
def testfunction(self):
0 commit comments