From 2704e48ba6d84e4eb6dca8deff3f97c9d56ae012 Mon Sep 17 00:00:00 2001 From: cpwu Date: Fri, 13 May 2022 11:40:33 +0800 Subject: [PATCH] fix case --- tests/system-test/0-others/user_control.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/system-test/0-others/user_control.py b/tests/system-test/0-others/user_control.py index f83865a461..8a1ce1a85c 100644 --- a/tests/system-test/0-others/user_control.py +++ b/tests/system-test/0-others/user_control.py @@ -286,6 +286,9 @@ class TDTestCase: tdDnodes.stop(1) tdDnodes.start(1) + tdSql.query("show users") + tdSql.checkRows(self.users_count + 2) + # 普通用户权限 # 密码登录 _, user = self.user_login(self.__user_list[0], f"new{self.__passwd_list[0]}") -- GitLab