0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00

test: fix test-sys.js fails if the time zone is not CET

Fixes #2423.
This commit is contained in:
koichik 2011-12-28 15:18:11 +09:00
parent b962ff35dd
commit b037c16f55

View 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 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'));