Skip to content

Commit adba7df

Browse files
bakkotptomato
authored andcommitted
fix order
1 parent 418419a commit adba7df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/built-ins/RegExp/named-groups/duplicate-names.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ assert.compareArray(["aabb", undefined, "bb"], matchResult);
1919
assert.sameValue(matchResult.groups.x, "bb");
2020

2121
let notMatched = "abab".match(/(?:(?:(?<x>a)|(?<x>b))\k<x>){2}/);
22-
assert.sameValue(null, notMatched);
22+
assert.sameValue(notMatched, null);

0 commit comments

Comments
 (0)