Skip to content

Commit 1d7e244

Browse files
committed
Fix unicode test
1 parent 11f1c42 commit 1d7e244

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/unicode/unicode.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919

2020
# printing of unicode chars using repr
2121
# NOTE: for some characters (eg \u10ff) we differ to CPython
22-
print(repr("a\uffff"))
23-
print(repr("a\U0001ffff"))
22+
print(repr("a\u2000"))
2423

2524
# test invalid escape code
2625
try:

0 commit comments

Comments
 (0)