Skip to content

Commit 2719af6

Browse files
committed
Fixed test again.
1 parent 7e52f6b commit 2719af6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function prototypeDate() {
1212
var dt = new Date(1404723152167);
1313
assert.ok(dt.toString() === 'Mon Jul 07 2014 09:52:32 GMT+0100 (UTC)', 'date problem');
1414
assert.ok(dt.format() === '2014-07-07T08:52:32.167Z', 'date format(0) problem');
15-
assert.ok(dt.add('minute', 5).toString() === 'Mon Jul 07 2014 10:57:32 GMT+0200 (CEST)', 'date add');
15+
assert.ok(dt.add('minute', 5).toString() === 'Mon Jul 07 2014 09:57:32 GMT+0100 (UTC)', 'date add');
1616
assert.ok(dt.format('MMM') === 'Jul', 'month name 1');
1717
assert.ok(dt.format('MMMM') === 'July', 'month name 2');
1818
assert.ok(dt.format('MMM', 'sk') === 'Júl', 'localized month name 1');

0 commit comments

Comments
 (0)