From 8c9580f93e6f19108c7ef9f7a4b801d401718ab5 Mon Sep 17 00:00:00 2001 From: plum-lihui Date: Thu, 30 Mar 2023 16:38:43 +0800 Subject: [PATCH] test: modify tmq test case --- tests/system-test/7-tmq/tmq3mnodeSwitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/7-tmq/tmq3mnodeSwitch.py b/tests/system-test/7-tmq/tmq3mnodeSwitch.py index 9ded8fc942..7c95f7a3db 100644 --- a/tests/system-test/7-tmq/tmq3mnodeSwitch.py +++ b/tests/system-test/7-tmq/tmq3mnodeSwitch.py @@ -252,7 +252,7 @@ class TDTestCase: resultList = tmqCom.selectConsumeResult(expectRows) tdLog.info("expect consume rows: %d should less/equal than act consume rows: %d"%(expectRowsList[0], resultList[0])) - if expectRowsList[0] <= resultList[0]: + if expectRowsList[0] > resultList[0]: tdLog.exit("0 tmq consume rows error!") if expectRowsList[0] == resultList[0]: -- GitLab