From 9065c6784fdd98c3e4ef0476d5a0c49a4403d228 Mon Sep 17 00:00:00 2001 From: Ping Xiao Date: Wed, 22 Jun 2022 20:25:30 +0800 Subject: [PATCH] test: update test case --- tests/pytest/functions/function_first.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytest/functions/function_first.py b/tests/pytest/functions/function_first.py index 6c3a747feb..df9056acfe 100644 --- a/tests/pytest/functions/function_first.py +++ b/tests/pytest/functions/function_first.py @@ -162,7 +162,7 @@ class TDTestCase: text = r.read() r.close() result = float(re.split('\n |\|', text)[3]) - tdSql.query("select first(c1) + last(c1) from tb01") + tdSql.query("select first(c1) - last(c1) from tb01") tdSql.checkData(0, 0, result) -- GitLab