Reviewers: Vyacheslav Egorov,

Description:
Fix typo in r6697: Use assertThrows correctly in the added test regress-1122.js.

Please review this at http://codereview.chromium.org/6460030/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     test/mjsunit/regress/regress-1122.js


Index: test/mjsunit/regress/regress-1122.js
===================================================================
--- test/mjsunit/regress/regress-1122.js        (revision 6697)
+++ test/mjsunit/regress/regress-1122.js        (working copy)
@@ -51,5 +51,5 @@
 assertEquals('prefix 9000 suffix', function_with_n_args(18000));
 assertEquals('prefix 16000 suffix', function_with_n_args(32000));

-assertThrows(function_with_n_args(35000));
-assertThrows(function_with_n_args(100000));
+assertThrows("function_with_n_args(35000)");
+assertThrows("function_with_n_args(100000)");


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to