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 2cd78521b5980632c1c8840ccf73090532e5b6d8..bbd9f2806ba325a7449cb840a6803e5a1107bc51 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: (var).toISOString is not a function. |
+PASS tests[i](nativeJSON) threw exception TypeError: 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: (var).toISOString is not a function. |
+PASS tests[i](nativeJSON) threw exception TypeError: toISOString is not a function. |
function (jsonObject){ |
var d = new Date(0); |
d.toJSON = undefined; |