summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js')
-rw-r--r--test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js
index ed42913de..acfcd13a2 100644
--- a/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js
+++ b/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-11.js
@@ -7,8 +7,8 @@ es5id: 15.4.4.15-1-11
description: Array.prototype.lastIndexOf applied to Date object
---*/
-var obj = new Date();
-obj.length = 2;
-obj[1] = true;
+ var obj = new Date();
+ obj.length = 2;
+ obj[1] = true;
assert.sameValue(Array.prototype.lastIndexOf.call(obj, true), 1, 'Array.prototype.lastIndexOf.call(obj, true)');