From 0a93a2c8ed8aeb92e1178e364c018835b977039b Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Thu, 12 Jan 2023 13:09:53 +0800 Subject: [PATCH] fix(playwright): correct test case result - should be all zeros --- tests/playwright/tests/columnFormula.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/tests/columnFormula.spec.ts b/tests/playwright/tests/columnFormula.spec.ts index 650d9501a4..25d6e8ede7 100644 --- a/tests/playwright/tests/columnFormula.spec.ts +++ b/tests/playwright/tests/columnFormula.spec.ts @@ -68,7 +68,7 @@ const formulaDataByDbType = (context: NcContext) => [ }, { formula: `DATETIME_DIFF(NOW(), "2023/10/14", "y")`, - result: ['-1', '-1', '-1', '-1', '-1'], + result: ['0', '0', '0', '0', '0'], }, { formula: `DATETIME_DIFF("2022/10/14", NOW(), "y")`,