summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js')
-rw-r--r--test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js
index 8ac92c385..e6a2d8166 100644
--- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js
+++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-13.js
@@ -7,9 +7,9 @@ es5id: 15.4.4.15-1-13
description: Array.prototype.lastIndexOf applied to the JSON object
---*/
-var targetObj = {};
+ var targetObj = {};
-JSON[3] = targetObj;
-JSON.length = 5;
+ JSON[3] = targetObj;
+ JSON.length = 5;
assert.sameValue(Array.prototype.lastIndexOf.call(JSON, targetObj), 3, 'Array.prototype.lastIndexOf.call(JSON, targetObj)');