Skip to content

Commit e7004ce

Browse files
author
Daniel Lemire
committed
Removing a test so that it is all ASCII.
1 parent 2bb101b commit e7004ce

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/unicode_tests.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ void test() {
191191
"\xc3\xb1",
192192
"\xe2\x82\xa1",
193193
"\xf0\x90\x8c\xbc",
194-
"안녕하세요, 세상",
195194
"\xc2\x80", // 6.7.2
196195
"\xf0\x90\x80\x80", // 6.7.4
197196
"\xee\x80\x80", // 6.11.2
@@ -223,7 +222,7 @@ void test() {
223222
"\x80",
224223
"\x91\x85\x95\x9e",
225224
"\x6c\x02\x8e\x18"};
226-
for (size_t i = 0; i < 9; i++) {
225+
for (size_t i = 0; i < 8; i++) {
227226
size_t len = strlen(goodsequences[i]);
228227
if (!simdjson::validate_utf8(goodsequences[i], len)) {
229228
printf("bug goodsequences[%zu]\n", i);

0 commit comments

Comments
 (0)