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, 1 insertions, 5 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 bbc47c981..1ff3602c0 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,11 +9,7 @@ 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)');