File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
graalpython/com.oracle.graal.python.test/src/tests/cpyext Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -626,7 +626,7 @@ class TestPyUnicode(CPyExtTestCase):
626
626
test_PyUnicode_DecodeLocaleAndSize = CPyExtFunction (
627
627
lambda args : args [0 ].decode (locale .getencoding (), errors = args [1 ].decode ('ascii' )),
628
628
lambda : (
629
- ('skål' . encode ( locale . getencoding ()) , b'strict' ),
629
+ (b'hello' , b'strict' ),
630
630
),
631
631
resultspec = "O" ,
632
632
argspec = 'y#y' ,
@@ -637,7 +637,7 @@ class TestPyUnicode(CPyExtTestCase):
637
637
test_PyUnicode_DecodeLocale = CPyExtFunction (
638
638
lambda args : args [0 ].decode (locale .getencoding (), errors = args [1 ].decode ('ascii' )),
639
639
lambda : (
640
- ('skål' . encode ( locale . getencoding ()) , b'strict' ),
640
+ (b'hello' , b'strict' ),
641
641
),
642
642
resultspec = "O" ,
643
643
argspec = 'yy' ,
You can’t perform that action at this time.
0 commit comments