Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update case folding tests for Unicode 15.1 #3947

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions test/built-ins/RegExp/unicode_full_case_folding.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ info: |
folding mappings.
---*/

assert(!/[\u0390]/ui.test("\u1fd3"), "\\u0390 does not match \\u1fd3");
assert(!/[\u1fd3]/ui.test("\u0390"), "\\u1fd3 does not match \\u0390");
assert(!/[\u03b0]/ui.test("\u1fe3"), "\\u03b0 does not match \\u1fe3");
assert(!/[\u1fe3]/ui.test("\u03b0"), "\\u1fe3 does not match \\u03b0");
assert(!/[\ufb05]/ui.test("\ufb06"), "\\ufb05 does not match \\ufb06");
assert(!/[\ufb06]/ui.test("\ufb05"), "\\ufb06 does not match \\ufb05");
assert(/[\u0390]/ui.test("\u1fd3"), "\\u0390 does not match \\u1fd3");
assert(/[\u1fd3]/ui.test("\u0390"), "\\u1fd3 does not match \\u0390");
assert(/[\u03b0]/ui.test("\u1fe3"), "\\u03b0 does not match \\u1fe3");
assert(/[\u1fe3]/ui.test("\u03b0"), "\\u1fe3 does not match \\u03b0");
assert(/[\ufb05]/ui.test("\ufb06"), "\\ufb05 does not match \\ufb06");
assert(/[\ufb06]/ui.test("\ufb05"), "\\ufb06 does not match \\ufb05");
Loading