util: output Dates with Date.toString not Date.toUTCString
authorAvi Flax <avi@aviflax.com>
Sun, 18 Dec 2011 16:29:37 +0000 (11:29 -0500)
committerBen Noordhuis <info@bnoordhuis.nl>
Sun, 18 Dec 2011 22:07:47 +0000 (23:07 +0100)
lib/util.js
test/simple/test-sys.js

index cd4cc0e..8cc4739 100644 (file)
@@ -181,7 +181,7 @@ function formatValue(ctx, value, recurseTimes) {
       return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
     }
     if (isDate(value)) {
-      return ctx.stylize(Date.prototype.toUTCString.call(value), 'date');
+      return ctx.stylize(Date.prototype.toString.call(value), 'date');
     }
     if (isError(value)) {
       return formatError(value);
index bc2859a..7f73235 100644 (file)
@@ -31,7 +31,7 @@ assert.equal('[Function]', common.inspect(function() {}));
 assert.equal('undefined', common.inspect(undefined));
 assert.equal('null', common.inspect(null));
 assert.equal('/foo(bar\\n)?/gi', common.inspect(/foo(bar\n)?/gi));
-assert.equal('Sun, 14 Feb 2010 11:48:40 GMT',
+assert.equal('Sun Feb 14 2010 12:48:40 GMT+0100 (CET)',
              common.inspect(new Date('Sun, 14 Feb 2010 11:48:40 GMT')));
 
 assert.equal("'\\n\\u0001'", common.inspect('\n\u0001'));