LGTM On Fri, Aug 27, 2010 at 5:19 PM, <[email protected]> wrote: > Reviewers: antonm, > > Description: > Fix regress-851.js to use assertNull instead of assertFalse. > > Please review this at http://codereview.chromium.org/3232002/show > > SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ > > Affected files: > M test/mjsunit/regress/regress-851.js > > > Index: test/mjsunit/regress/regress-851.js > =================================================================== > --- test/mjsunit/regress/regress-851.js (revision 5364) > +++ test/mjsunit/regress/regress-851.js (working copy) > @@ -28,5 +28,5 @@ > var i = 0; > for (var i = 0; i < 10000; i++) { > Object.freeze({}); > - assertFalse(JSON.stringify({x: null}).match(/\0/)); > + assertNull(JSON.stringify({x: null}).match(/\0/)); > } > > >
-- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
