Skip to content

Commit

Permalink
FIx unicode unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
kildom committed Feb 29, 2024
1 parent 93ac557 commit 953c4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/unicode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Unicode', () => {
if (doUpgraded) {

test('Upgraded unicode', () => {
expect(cre.unicode`[\w--_]`).toStrictEqual(new RegExp('[\\w--_]', 'msv'));
expect(cre.unicode`[\w--_]`).toStrictEqual(new RegExp('[\\w--_]', 'sv'));
});

} else {
Expand Down

0 comments on commit 953c4b7

Please sign in to comment.