| Index: test/mjsunit/json.js
|
| diff --git a/test/mjsunit/json.js b/test/mjsunit/json.js
|
| index d47cff08b72fffdafcb698629b0e605c6ef2891f..85457cd6e11e4d56855f1a06dce1153ec5bad9a8 100644
|
| --- a/test/mjsunit/json.js
|
| +++ b/test/mjsunit/json.js
|
| @@ -295,8 +295,7 @@ assertEquals('{"x":true}', JSON.stringify({x: Boolean}, newx));
|
|
|
| assertEquals(undefined, JSON.stringify(undefined));
|
| assertEquals(undefined, JSON.stringify(function () { }));
|
| -//
|
| -Arrays with missing, undefined or function elements have those elements
|
| +// Arrays with missing, undefined or function elements have those elements
|
| // replaced by null.
|
| assertEquals("[null,null,null]",
|
| JSON.stringify([undefined,,function(){}]));
|
|
|