Skip to content

Commit

Permalink
Add missing binding
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens authored and ptomato committed May 4, 2022
1 parent a44a97a commit 9978883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harness/regExpUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function printStringCodePoints(string) {
function testPropertyEscapes(regExp, string, expression) {
if (!regExp.test(string)) {
for (const symbol of string) {
printCodePoint(symbol.codePointAt(0));
const hex = printCodePoint(symbol.codePointAt(0));
assert(
regExp.test(symbol),
`\`${ expression }\` should match U+${ hex } (\`${ symbol }\`)`
Expand Down

0 comments on commit 9978883

Please sign in to comment.