Fixed trim test failure.

Review URL: http://codereview.chromium.org/273033


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3053 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent f1354a29
......@@ -96,7 +96,7 @@ assertEquals(rightTrimString.trim(), testString);
assertEquals(rightTrimString.trimLeft(), testString);
assertEquals(rightTrimString.trimRight(), rightTrimString);
var testValues = [0, Infinity, NaN, true, false, ({}), ['an','array']
var testValues = [0, Infinity, NaN, true, false, ({}), ['an','array'],
({toString:function(){return 'wibble'}})
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment