summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js')
-rw-r--r--test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js
index 5ed7ad249..ced61de4c 100644
--- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js
+++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js
@@ -9,9 +9,7 @@ description: >
overridden to null (type conversion))
---*/
-var i = Array.prototype.lastIndexOf.call({
- length: null
-}, 1);
+ var i = Array.prototype.lastIndexOf.call({length: null}, 1);
assert.sameValue(i, -1, 'i');