From 5aae69338c397e8457499f80cb56b088e3ab6f84 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Wed, 22 May 2024 16:13:13 +0800 Subject: [PATCH] fix(test): update test cases. --- tests/system-test/0-others/information_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/0-others/information_schema.py b/tests/system-test/0-others/information_schema.py index 965cdee9ce..bf2f1c01f6 100644 --- a/tests/system-test/0-others/information_schema.py +++ b/tests/system-test/0-others/information_schema.py @@ -222,7 +222,7 @@ class TDTestCase: tdSql.query("select * from information_schema.ins_columns where db_name ='information_schema'") tdLog.info(len(tdSql.queryResult)) - tdSql.checkEqual(True, len(tdSql.queryResult) in range(258, 259)) + tdSql.checkEqual(True, len(tdSql.queryResult) in range(259, 260)) tdSql.query("select * from information_schema.ins_columns where db_name ='performance_schema'") tdSql.checkEqual(54, len(tdSql.queryResult))