summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js')
-rw-r--r--test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js
index 4003fe33c..6a11c8eca 100644
--- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js
+++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_spreadable-reg-exp.js
@@ -27,7 +27,7 @@ assert(compareArray([].concat(/abc/), [void 0, void 0, void 0]));
RegExp.prototype[0] = 1;
RegExp.prototype[1] = 2;
RegExp.prototype[2] = 3;
-assert(compareArray([].concat(/abc/), [1,2,3]));
+assert(compareArray([].concat(/abc/), [1, 2, 3]));
delete RegExp.prototype[Symbol.isConcatSpreadable];
delete RegExp.prototype[0];