| Index: regexp2000/test/cctest/test-regexp.cc
|
| diff --git a/regexp2000/test/cctest/test-regexp.cc b/regexp2000/test/cctest/test-regexp.cc
|
| index 853d4f47108d5be1a49161cefb04d409812c3293..e3f40bd10a1b794959faa46d790e1252ee3707e9 100644
|
| --- a/regexp2000/test/cctest/test-regexp.cc
|
| +++ b/regexp2000/test/cctest/test-regexp.cc
|
| @@ -734,7 +734,7 @@ TEST(LatinCanonicalize) {
|
| for (uc32 c = 128; c < (1 << 21); c++) {
|
| // These exceptions are caused by a known bug in the implementation.
|
| if (c != 0x026B && c != 0x027D)
|
| - CHECK(canonicalize(c) >= 128);
|
| + CHECK_GE(canonicalize(c), 128);
|
| }
|
| unibrow::Mapping<unibrow::ToUppercase> to_upper;
|
| for (uc32 c = 0; c < (1 << 21); c++) {
|
|
|