From 9357968f53054101bc79f8f7270ef7ded8ea6bf8 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Thu, 11 May 2023 09:40:09 +0530 Subject: [PATCH] test: sqlite tz offset corrections Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- tests/playwright/tests/db/timezone.spec.ts | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/tests/playwright/tests/db/timezone.spec.ts b/tests/playwright/tests/db/timezone.spec.ts index 9e482e7bde..118a51115f 100644 --- a/tests/playwright/tests/db/timezone.spec.ts +++ b/tests/playwright/tests/db/timezone.spec.ts @@ -131,7 +131,7 @@ test.describe('Timezone : Japan/Tokyo', () => { if (!isSqlite(context)) return; // UTC expected response - const dateUTC = ['2021-01-01 00:00:00', '2021-01-01 00:00:00', '2021-01-01 00:00:00']; + const dateUTC = ['2021-01-01 00:00:00+00:00', '2021-01-01 00:00:00+00:00', '2021-01-01 00:00:00+00:00']; const readDate = records.list.map(record => record.DateTime); @@ -623,16 +623,8 @@ test.describe('External DB - DateTime column', async () => { let expectedDateTimeWithTz = []; if (isSqlite(context)) { - expectedDateTimeWithoutTz = [ - '2023-04-27 10:00:00', - '2023-04-27 10:00:00+05:30', - `2023-04-27 10:00:00${formattedOffset}`, - ]; - expectedDateTimeWithTz = [ - '2023-04-27 10:00:00', - '2023-04-27 10:00:00+05:30', - `2023-04-27 10:00:00${formattedOffset}`, - ]; + expectedDateTimeWithoutTz = ['2023-04-27 10:00:00', '2023-04-27 10:00:00+05:30', `2023-04-27 04:30:00+00:00`]; + expectedDateTimeWithTz = ['2023-04-27 10:00:00', '2023-04-27 10:00:00+05:30', `2023-04-27 04:30:00+00:00`]; } else if (isPg(context)) { expectedDateTimeWithoutTz = ['2023-04-27 10:00:00', '2023-04-27 10:00:00', '2023-04-27 10:00:00']; expectedDateTimeWithTz = [