summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/includes/sparse.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/includes/sparse.js')
-rw-r--r--test/built-ins/Array/prototype/includes/sparse.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Array/prototype/includes/sparse.js b/test/built-ins/Array/prototype/includes/sparse.js
index bd272fe93..751c2c928 100644
--- a/test/built-ins/Array/prototype/includes/sparse.js
+++ b/test/built-ins/Array/prototype/includes/sparse.js
@@ -21,18 +21,18 @@ info: |
---*/
assert.sameValue(
- [ , , , ].includes(undefined),
+ [, , , ].includes(undefined),
true,
"[ , , , ].includes(undefined)"
);
assert.sameValue(
- [ , , , 42, ].includes(undefined, 4),
+ [, , , 42, ].includes(undefined, 4),
false,
"[ , , , 42, ].includes(undefined, 4)"
);
-var sample = [ , , , 42, , ];
+var sample = [, , , 42, , ];
assert.sameValue(
sample.includes(undefined),