From 260e930637f1c8ec0f85515e4420e2291f780d84 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Thu, 16 Mar 2023 19:41:30 +0800 Subject: [PATCH] fix(playwright): incorrect time format --- tests/playwright/setup/xcdb-records.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/playwright/setup/xcdb-records.ts b/tests/playwright/setup/xcdb-records.ts index a6f3040973..b155554d30 100644 --- a/tests/playwright/setup/xcdb-records.ts +++ b/tests/playwright/setup/xcdb-records.ts @@ -41,16 +41,16 @@ const rowMixedValue = (column: ColumnType, index: number) => { const decimals = [33.3, 456.34, 333.3, null, 267.5674, 34.0, 8754.0, 3234.547, 44.2647, 33.98, null]; const duration = [60, 120, 180, 3600, 3660, 3720, null, 3780, 60, 120, null]; const time = [ - '02:02:00', - '20:20:20', - '04:04:00', - '02:02:00', - '20:20:20', - '18:18:18', + '1999-01-01 02:02:00+08:00', + '1999-01-01 20:20:20+08:00', + '1999-01-01 04:04:00+08:00', + '1999-01-01 02:02:00+08:00', + '1999-01-01 20:20:20+08:00', + '1999-01-01 18:18:18+08:00', null, - '02:02:00', - '20:20:20', - '18:18:18', + '1999-01-01 02:02:00+08:00', + '1999-01-01 20:20:20+08:00', + '1999-01-01 18:18:18+08:00', null, ]; const rating = [0, 1, 2, 3, null, 0, 4, 5, 0, 1, null];