Skip to content

Commit da6da62

Browse files
committed
[CST-7376] fix lint error
1 parent 5c2c60d commit da6da62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/shared/date.util.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('Date Utils', () => {
2222
});
2323
it('should convert NgbDateStruct to YYYY-MM-DDThh:mm:ssZ string', () => {
2424
// NOTE: month is zero indexed which is why it increases by one
25-
const date = new Date(Date.UTC(2022, 5, 3))
25+
const date = new Date(Date.UTC(2022, 5, 3));
2626
expect(dateToISOFormat(dateToNgbDateStruct(date))).toEqual('2022-06-03T00:00:00Z');
2727
});
2828
});

0 commit comments

Comments
 (0)