summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js')
-rw-r--r--test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js
index 1c8a99b9c..5e6cedae9 100644
--- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js
+++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-4.js
@@ -9,6 +9,9 @@ description: >
is -0)
---*/
- var obj = { 0: true, length: -0 };
+var obj = {
+ 0: true,
+ length: -0
+};
assert.sameValue(Array.prototype.lastIndexOf.call(obj, true), -1, 'Array.prototype.lastIndexOf.call(obj, true)');