[ACS-5857] fixed unit test for adding seconds

This commit is contained in:
SheenaMalhotra182
2023-10-04 01:15:31 +05:30
parent fe83a48080
commit 83870933bd
@@ -57,8 +57,8 @@ describe('Date Format Translations', () => {
});
it('should add seconds to a date time value', () => {
const inputDateTime = '2023-09-02T10:00:00Z';
const expectedUpdatedValue = '2023-09-02T10:00:00.00Z';
const inputDateTime = '2023-09-02T10:00:000Z';
const expectedUpdatedValue = '2023-09-02T10:00:00.000Z';
const result = DateFnsUtils.addSeconds(inputDateTime);