summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/includes/fromIndex-equal-or-greater-length-returns-false.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/includes/fromIndex-equal-or-greater-length-returns-false.js')
-rw-r--r--test/built-ins/Array/prototype/includes/fromIndex-equal-or-greater-length-returns-false.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Array/prototype/includes/fromIndex-equal-or-greater-length-returns-false.js b/test/built-ins/Array/prototype/includes/fromIndex-equal-or-greater-length-returns-false.js
index ebca5a043..84bb4526d 100644
--- a/test/built-ins/Array/prototype/includes/fromIndex-equal-or-greater-length-returns-false.js
+++ b/test/built-ins/Array/prototype/includes/fromIndex-equal-or-greater-length-returns-false.js
@@ -18,6 +18,6 @@ info: |
8. Return false.
---*/
-var sample = [ 7, 7, 7, 7 ];
+var sample = [7, 7, 7, 7];
assert.sameValue(sample.includes(7, 4), false, "length");
assert.sameValue(sample.includes(7, 5), false, "length + 1");