blob: 40f0dbf962ca86dabc6c3ac473dd30c4385fc44c [file] [log] [blame]
function reportCompare(expected, actual, description) + ++actual + "'";
var summary = 'Object.prototype.toLocaleString() should track Object.prototype.toString() ';
var o = {
toString: function () {}
};
expect = o;
actual = o.toLocaleString();
reportCompare(expect, actual, summary);