summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js')
-rw-r--r--test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js
index 1ff3602c0..bbc47c981 100644
--- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js
+++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-3-7.js
@@ -9,7 +9,11 @@ description: >
negative)
---*/
- var obj = { 4: true, 5: false, length: 5 - Math.pow(2, 32) };
+var obj = {
+ 4: true,
+ 5: false,
+ length: 5 - Math.pow(2, 32)
+};
assert.sameValue(Array.prototype.indexOf.call(obj, true), -1, 'Array.prototype.indexOf.call(obj, true)');
assert.sameValue(Array.prototype.indexOf.call(obj, false), -1, 'Array.prototype.indexOf.call(obj, false)');