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'), ]; }