Skip to content

Commit 99a6567

Browse files
committed
skip another interop test on native
1 parent 44c8241 commit 99a6567

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_interop.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -638,17 +638,17 @@ def test_foreign_slice_setting():
638638
assert True
639639
else:
640640
assert False, "should throw a type error again"
641-
641+
642+
@skipIf(is_native, "not supported in native mode")
642643
def test_foreign_repl():
643644
from java.util.logging import LogRecord
644645
from java.util.logging import Level
645-
646+
646647
lr = LogRecord(Level.ALL, "message")
647648
assert repr(LogRecord).startswith('<JavaClass[java.util.logging.LogRecord] at')
648649
assert repr(lr).startswith('<JavaObject[java.util.logging.LogRecord] at')
649-
650+
650651
from java.lang import Integer
651652
i = Integer('22')
652653
assert repr(Integer).startswith('<JavaClass[java.lang.Integer] at')
653654
assert repr(i) == '22'
654-

0 commit comments

Comments
 (0)