summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/prototype/Symbol.replace/replace-with-trailing.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/prototype/Symbol.replace/replace-with-trailing.js')
-rw-r--r--test/built-ins/RegExp/prototype/Symbol.replace/replace-with-trailing.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/RegExp/prototype/Symbol.replace/replace-with-trailing.js b/test/built-ins/RegExp/prototype/Symbol.replace/replace-with-trailing.js
index 62ecbb9bf..136ea6c23 100644
--- a/test/built-ins/RegExp/prototype/Symbol.replace/replace-with-trailing.js
+++ b/test/built-ins/RegExp/prototype/Symbol.replace/replace-with-trailing.js
@@ -14,11 +14,11 @@ info: |
features: [Symbol.replace]
---*/
-assert.sameValue(/abc/[Symbol.replace]('abcd', 'X'), 'Xd');
-assert.sameValue(/bc/[Symbol.replace]('abcd', 'X'), 'aXd');
-assert.sameValue(/c/[Symbol.replace]('abcd', 'X'), 'abXd');
+assert.sameValue(/abc/ [Symbol.replace]('abcd', 'X'), 'Xd');
+assert.sameValue(/bc/ [Symbol.replace]('abcd', 'X'), 'aXd');
+assert.sameValue(/c/ [Symbol.replace]('abcd', 'X'), 'abXd');
-assert.sameValue(/ab/[Symbol.replace]('abcd', 'X'), 'Xcd');
-assert.sameValue(/b/[Symbol.replace]('abcd', 'X'), 'aXcd');
+assert.sameValue(/ab/ [Symbol.replace]('abcd', 'X'), 'Xcd');
+assert.sameValue(/b/ [Symbol.replace]('abcd', 'X'), 'aXcd');
-assert.sameValue(/a/[Symbol.replace]('abcd', 'X'), 'Xbcd');
+assert.sameValue(/a/ [Symbol.replace]('abcd', 'X'), 'Xbcd');