Skip to content

Commit 327bab9

Browse files
committed
debug in gate
1 parent 1d93f3c commit 327bab9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

graalpython/lib-graalpython/modules/hpy/test/test_hpyunicode.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ def test_DecodeLatin1(self):
174174
@EXPORT(f)
175175
@INIT
176176
""")
177-
assert mod.f(b'M\xfcller') == "Müller"
177+
res = mod.f(b'M\xfcller')
178+
assert res == "Müller"
178179

179180
def test_DecodeASCII(self):
180181
mod = self.make_module("""

0 commit comments

Comments
 (0)