Index: test/mjsunit/regress/regress-1122.js |
diff --git a/test/mjsunit/regress/regress-1122.js b/test/mjsunit/regress/regress-1122.js |
index 8f0bfb674b1d82304b8d8d0d92573e3032373c67..6d36ce2ebfea03384bc71ab9c31883b017bd16cf 100644 |
--- a/test/mjsunit/regress/regress-1122.js |
+++ b/test/mjsunit/regress/regress-1122.js |
@@ -55,12 +55,9 @@ assertEquals('prefix 3000 suffix', |
function_with_n_params_and_m_args(6000, 8000)); |
assertEquals('prefix 5000 suffix', |
function_with_n_params_and_m_args(10000, 8000)); |
-assertEquals('prefix 9000 suffix', |
- function_with_n_params_and_m_args(18000, 18000)); |
-assertEquals('prefix 16000 suffix', |
- function_with_n_params_and_m_args(32000, 32000)); |
-assertEquals('prefix undefined suffix', |
- function_with_n_params_and_m_args(32000, 10000)); |
+assertThrows("function_with_n_params_and_m_args(18000, 18000)"); |
+assertThrows("function_with_n_params_and_m_args(32000, 32000)"); |
+assertThrows("function_with_n_params_and_m_args(32000, 10000)"); |
assertThrows("function_with_n_params_and_m_args(66000, 30000)"); |
assertThrows("function_with_n_params_and_m_args(30000, 66000)"); |