Skip to content

Commit ab27a0a

Browse files
committed
Fix unit test failing
1 parent 601eb25 commit ab27a0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/__tests__/dates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { getISOLocalDateTime } from '../dates';
22

33
describe('getISOLocalDateTime', () => {
44
it('returns proper ISO date', () => {
5-
const date = new Date(Date.UTC(2017, 0, 1, 21, 41, 37));
5+
const date = new Date(2017, 0, 1, 21, 41, 37);
66

77
const ISODate = getISOLocalDateTime(date);
88

0 commit comments

Comments
 (0)