不要怂,就是干,撸起袖子干!

Commit 965f2ee7 by Jan Aagaard Meier

Fix range stringify test to use UTC

1 parent 7d1ff388
...@@ -60,8 +60,8 @@ if (dialect.match(/^postgres/)) { ...@@ -60,8 +60,8 @@ if (dialect.match(/^postgres/)) {
}); });
it('should handle date values', function () { it('should handle date values', function () {
expect(range.stringify([new Date(2000, 1, 1), expect(range.stringify([new Date(Date.UTC(2000, 1, 1)),
new Date(2000, 1, 2)])).to.equal('("2000-02-01T00:00:00.000Z","2000-02-02T00:00:00.000Z")'); new Date(Date.UTC(2000, 1, 2))])).to.equal('("2000-02-01T00:00:00.000Z","2000-02-02T00:00:00.000Z")');
}); });
}); });
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!