Index: test/webkit/run-json-stringify-expected.txt |
diff --git a/test/webkit/run-json-stringify-expected.txt b/test/webkit/run-json-stringify-expected.txt |
index fef38156a79a6c5224585688280ffec68d0e0269..2cd78521b5980632c1c8840ccf73090532e5b6d8 100644 |
--- a/test/webkit/run-json-stringify-expected.txt |
+++ b/test/webkit/run-json-stringify-expected.txt |
@@ -83,7 +83,7 @@ PASS tests[i](nativeJSON) is tests[i](JSON) |
function (jsonObject){ |
return jsonObject.stringify({toJSON: Date.prototype.toJSON}); |
} |
-PASS tests[i](nativeJSON) threw exception TypeError: jsonObject.stringify is not a function. |
+PASS tests[i](nativeJSON) threw exception TypeError: (var).toISOString is not a function. |
function (jsonObject){ |
return jsonObject.stringify({toJSON: Date.prototype.toJSON, toISOString: function(){ return "custom toISOString"; }}); |
} |
@@ -101,7 +101,7 @@ function (jsonObject){ |
d.toISOString = null; |
return jsonObject.stringify(d); |
} |
-PASS tests[i](nativeJSON) threw exception TypeError: jsonObject.stringify is not a function. |
+PASS tests[i](nativeJSON) threw exception TypeError: (var).toISOString is not a function. |
function (jsonObject){ |
var d = new Date(0); |
d.toJSON = undefined; |