diff --git a/test/simple/test-sys.js b/test/simple/test-sys.js index 7f73235bb8a..7f023c1a619 100644 --- a/test/simple/test-sys.js +++ b/test/simple/test-sys.js @@ -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 Feb 14 2010 12:48:40 GMT+0100 (CET)', +assert.equal(new Date('2010-02-14T12:48:40+01:00').toString(), common.inspect(new Date('Sun, 14 Feb 2010 11:48:40 GMT'))); assert.equal("'\\n\\u0001'", common.inspect('\n\u0001'));