Skip to content

Commit 8f2f1bb

Browse files
committed
Fix failing tests
1 parent 195e6e9 commit 8f2f1bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shared/__tests__/dateFormatter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ describe('formatTime', () => {
1717
it('returns proper full time', () => {
1818
const date = new Date(2017, 1, 1, 13, 27);
1919

20-
const formattedTime = formatTime(date, 'de-DE');
20+
const formattedTime = formatTime(date, 'en-US');
2121

22-
expect(formattedTime).toBe('13:27:00');
22+
expect(formattedTime).toBe('1:27:00 PM');
2323
});
2424
});

0 commit comments

Comments
 (0)