Index: test/mjsunit/date-parse.js |
=================================================================== |
--- test/mjsunit/date-parse.js (revision 2165) |
+++ test/mjsunit/date-parse.js (working copy) |
@@ -254,7 +254,7 @@ |
for (var i = 0; i < 24 * 365 * 100; i += 95) { |
var ms = i * (3600 * 1000); |
var s = (new Date(ms)).toString(); |
- assertEquals(ms, Date.parse(s), s); |
+ assertEquals(ms, Date.parse(s), "parse own: " + s); |
} |
// Negative tests. |