Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Array / S15.4.3_A1.1_T2.js
blob53fbd5f169858b87fc7de61f92c19b2ddacccf92
1 // Copyright 2009 the Sputnik authors.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 info: |
6     The value of the internal [[Prototype]] property of
7     the Array constructor is the Function prototype object
8 es5id: 15.4.3_A1.1_T2
9 description: Function.prototype.toString = Object.prototype.toString
10 ---*/
12 Function.prototype.toString = Object.prototype.toString;
14 assert.sameValue(
15   Array.toString(),
16   "[object Function]",
17   'Array.toString() must return "[object Function]"'
20 reportCompare(0, 0);