Skip to content

Commit 233e2e0

Browse files
committed
disable test_string_noninterned for now
1 parent bbd6e8d commit 233e2e0

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

  • graalpython/com.oracle.graal.python.test/src/tests

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,10 @@ def test_string_interned():
8585
y='1234'
8686
assert id(x) == id(y) == id('1234') == id(sys.intern('1234')) == id(sys.intern(x)) == id(sys.intern(y))
8787

88-
def test_string_noninterned():
89-
x = '1234'
90-
y = x * 2
91-
z = x * 2
92-
assert id(y) != id(z)
88+
# skip until is fixed: GR-28568
89+
# def test_string_noninterned():
90+
# x = '1234'
91+
# y = x * 2
92+
# z = x * 2
93+
# assert id(y) != id(z)
9394

0 commit comments

Comments
 (0)