diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/custom/03_stdlib/01_chr | 2 | ||||
-rw-r--r-- | tests/custom/03_stdlib/27_sprintf | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/custom/03_stdlib/01_chr b/tests/custom/03_stdlib/01_chr index 17163e3..47fdb17 100644 --- a/tests/custom/03_stdlib/01_chr +++ b/tests/custom/03_stdlib/01_chr @@ -22,6 +22,6 @@ passed to the `chr()` function. [ "", "abc", - "\u0000\u0000\u0000\u0000\u0000AB\u00ff" + "\u0000\u0000\u0000\u0000\u0000ABÿ" ] -- End -- diff --git a/tests/custom/03_stdlib/27_sprintf b/tests/custom/03_stdlib/27_sprintf index e1a3c5d..5606e9a 100644 --- a/tests/custom/03_stdlib/27_sprintf +++ b/tests/custom/03_stdlib/27_sprintf @@ -235,8 +235,8 @@ string value. "1E-07", "NAN", "A", - "\u00ff", - "\u00c8", + "ÿ", + "È", "\u0000", "\"Hello\\n\"", "123", |