Followup fixes to misplaced test for bug 648471, seems I made them in the patch in a tree I didn't push. :-\ r=orange

--HG--
extra : rebase_source : cb9b119601b30fd3d66e0699f5c66bac850ec1c7
This commit is contained in:
Jeff Walden 2011-10-11 17:43:25 -07:00
Родитель 8f2ae0223f
Коммит 4bac585224
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -30,11 +30,11 @@ assertEq(JSON.stringify({ 3: 3, 4: 4 }, [S]),
Number.prototype.toString = function() { return new String(42); };
assertEq(JSON.stringify({ 3: 3, 4: 4 }, [N]),
'{"3":3}');
'{"4":4}');
String.prototype.toString = function() { return new Number(17); };
assertEq(JSON.stringify({ 3: 3, 4: 4 }, [S]),
'{"4":4}');
'{"3":3}');
Number.prototype.toString = null;
assertEq(JSON.stringify({ 3: 3, 4: 4 }, [N]),