summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/named-groups/lookbehind.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/named-groups/lookbehind.js')
-rw-r--r--test/built-ins/RegExp/named-groups/lookbehind.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/RegExp/named-groups/lookbehind.js b/test/built-ins/RegExp/named-groups/lookbehind.js
index e3926bc97..1748732ef 100644
--- a/test/built-ins/RegExp/named-groups/lookbehind.js
+++ b/test/built-ins/RegExp/named-groups/lookbehind.js
@@ -42,5 +42,5 @@ assert(compareArray(["f", undefined], "abcdef".match(/(?<a>(?<!\D{3}))f|f/)));
// Even within a lookbehind, properties are created in left to right order
assert(compareArray(["fst", "snd"],
- Object.getOwnPropertyNames(
- /(?<=(?<fst>.)|(?<snd>.))/u.exec("abcd").groups)));
+ Object.getOwnPropertyNames(
+ /(?<=(?<fst>.)|(?<snd>.))/u.exec("abcd").groups)));