Browse Source

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

Fixes #2423.
v0.7.4-release
koichik 13 years ago
parent
commit
b037c16f55
  1. 2
      test/simple/test-sys.js

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

Loading…
Cancel
Save