From 108f6b9b826442d1a5ecc329b3e703fcb2fe2359 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Thu, 11 May 2023 16:20:14 +0530 Subject: [PATCH] test: pg tz corrections Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- tests/playwright/tests/db/timezone.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/playwright/tests/db/timezone.spec.ts b/tests/playwright/tests/db/timezone.spec.ts index 028cc0e445..2922a27eae 100644 --- a/tests/playwright/tests/db/timezone.spec.ts +++ b/tests/playwright/tests/db/timezone.spec.ts @@ -656,9 +656,9 @@ test.describe('External DB - DateTime column', async () => { getDateTimeInUTCTimeZone('2023-04-27 10:00:00+00:00'), ]; expectedDateTimeWithTz = [ - getDateTimeInLocalTimeZone('2023-04-27 10:00:00+00:00'), - getDateTimeInLocalTimeZone('2023-04-27 10:00:00+00:00'), - getDateTimeInLocalTimeZone('2023-04-27 10:00:00+00:00'), + '2023-04-27 10:00:00+00:00', + '2023-04-27 04:30:00+00:00', + getDateTimeInUTCTimeZone('2023-04-27 10:00:00+00:00'), ]; }