Permalink
Browse files

Fix unit test

  • Loading branch information...
Andy Chu
Andy Chu committed Jun 5, 2018
1 parent 8e772f9 commit e6cdfa6977c94d36d4114b4d4e33b0666ea6de24
Showing with 1 addition and 2 deletions.
  1. +1 −2 core/word_compile_test.py
@@ -17,8 +17,7 @@ def testUtf8Encode(self):
(u'\u1234'.encode('utf-8'), 0x1234),
(u'\U00020000'.encode('utf-8'), 0x00020000),
# Out of range gives Unicode replacement character.
#('\xef\xbf\xbd', 0x100200),
(None, 0x100200),
('\xef\xbf\xbd', 0x10020000),
]
for expected, code_point in CASES:

0 comments on commit e6cdfa6

Please sign in to comment.