From aca8c13486e5610db9a77c48b657bef0036cfe2a Mon Sep 17 00:00:00 2001 From: SheenaMalhotra182 Date: Thu, 24 Aug 2023 14:33:27 +0530 Subject: [PATCH] [ACS-5857] resolved linting issues --- .../lib/form/components/widgets/core/form-field.model.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/src/lib/form/components/widgets/core/form-field.model.spec.ts b/lib/core/src/lib/form/components/widgets/core/form-field.model.spec.ts index 2397cf4453..b9d7384563 100644 --- a/lib/core/src/lib/form/components/widgets/core/form-field.model.spec.ts +++ b/lib/core/src/lib/form/components/widgets/core/form-field.model.spec.ts @@ -307,7 +307,7 @@ describe('FormFieldModel', () => { const currentDateTime = new Date(); const formattedDate = format(currentDateTime, 'yyyy-MM-dd'); const formattedTime = format(currentDateTime, 'hh:mm'); - + const expectedDateTime = format(currentDateTime, 'yyyy-MM-dd hh:mm'); const expectedDateTimeFormat = formattedDate + `T${formattedTime}:00.000Z`;