From 30efd647d7bbf88476036e15992ec66dba89086c Mon Sep 17 00:00:00 2001 From: cpwu Date: Thu, 26 May 2022 10:52:13 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/concat.py | 2 +- tests/system-test/2-query/concat_ws.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system-test/2-query/concat.py b/tests/system-test/2-query/concat.py index 3fde897c3d..1410bb3fac 100644 --- a/tests/system-test/2-query/concat.py +++ b/tests/system-test/2-query/concat.py @@ -147,7 +147,7 @@ class TDTestCase: def __test_error(self): tdLog.printNoPrefix("==========err sql condition check , must return error==========") - tbname = ["ct1", "ct2", "ct4", "t1", "stb1"] + tbname = ["ct1", "ct4", "t1", "stb1"] for tb in tbname: for errsql in self.__concat_err_check(tb): diff --git a/tests/system-test/2-query/concat_ws.py b/tests/system-test/2-query/concat_ws.py index 136429321b..73829a6f5d 100644 --- a/tests/system-test/2-query/concat_ws.py +++ b/tests/system-test/2-query/concat_ws.py @@ -147,7 +147,7 @@ class TDTestCase: def __test_error(self): tdLog.printNoPrefix("==========err sql condition check , must return error==========") - tbname = ["ct1", "ct2", "ct4", "t1", "stb1"] + tbname = ["ct1", "ct4", "t1", "stb1"] for tb in tbname: for errsql in self.__concat_ws_err_check(tb): -- GitLab