From 8895b3a5caf8d4b72bc38cbe1ef5f070dc1648cc Mon Sep 17 00:00:00 2001 From: cpwu Date: Fri, 13 May 2022 12:06:02 +0800 Subject: [PATCH] fix case --- tests/system-test/0-others/user_control.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system-test/0-others/user_control.py b/tests/system-test/0-others/user_control.py index c3e5ad3191..78aefd5e9e 100644 --- a/tests/system-test/0-others/user_control.py +++ b/tests/system-test/0-others/user_control.py @@ -330,9 +330,9 @@ class TDTestCase: # 删除后无法登录 self.login_err(self.__user_list[0], self.__passwd_list[0]) - self.login_currrent(self.__user_list[0], f"new{self.__passwd_list[0]}") + self.login_err(self.__user_list[0], f"new{self.__passwd_list[0]}") self.login_err(self.__user_list[1], self.__passwd_list[1]) - self.login_currrent(self.__user_list[1], f"new{self.__passwd_list[1]}") + self.login_err(self.__user_list[1], f"new{self.__passwd_list[1]}") tdSql.query("show users") tdSql.checkRows(1)