Index: test/mjsunit/regexp.js |
diff --git a/test/mjsunit/regexp.js b/test/mjsunit/regexp.js |
index b6f019ea26a6c6d2e5c5787ccab8b9f0e957e5ee..1a5de2addf7d6a47e7c411ca7aa6d8f5eedc6615 100644 |
--- a/test/mjsunit/regexp.js |
+++ b/test/mjsunit/regexp.js |
@@ -719,9 +719,6 @@ assertThrows("RegExp.prototype.toString.call(0)", TypeError); |
assertThrows("RegExp.prototype.toString.call('')", TypeError); |
assertThrows("RegExp.prototype.toString.call(false)", TypeError); |
assertThrows("RegExp.prototype.toString.call(true)", TypeError); |
-assertThrows("RegExp.prototype.toString.call([])", TypeError); |
-assertThrows("RegExp.prototype.toString.call({})", TypeError); |
-assertThrows("RegExp.prototype.toString.call(function(){})", TypeError); |
// Test mutually recursive capture and backreferences. |
assertEquals(["b", "", ""], /(\2)b(\1)/.exec("aba")); |