summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js')
-rw-r--r--test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js
index 94125fa81..91a596078 100644
--- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js
+++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-1.js
@@ -7,9 +7,13 @@ es5id: 15.4.4.14-9-1
description: Array.prototype.indexOf must return correct index (boolean)
---*/
- var obj = {toString:function (){return true}};
- var _false = false;
- var a = [obj,"true", undefined,0,_false,null,1,"str",0,1,true,false,true,false];
+var obj = {
+ toString: function() {
+ return true
+ }
+};
+var _false = false;
+var a = [obj, "true", undefined, 0, _false, null, 1, "str", 0, 1, true, false, true, false];
- assert.sameValue(a.indexOf(true), 10, 'a[10]=true');
- assert.sameValue(a.indexOf(false), 4, 'a[4] =_false');
+assert.sameValue(a.indexOf(true), 10, 'a[10]=true');
+assert.sameValue(a.indexOf(false), 4, 'a[4] =_false');