fix case
This commit is contained in:
parent
210c29dc00
commit
14e2ba7c88
|
@ -211,14 +211,19 @@ class TDTestCase:
|
|||
tdSql.query("show users")
|
||||
tdSql.checkRows(self.users_count + 2)
|
||||
|
||||
# 密码登录认证
|
||||
self.login_currrent(self.__user_list[0], self.__passwd_list[0])
|
||||
self.login_err(self.__user_list[0], f"new{self.__passwd_list[0]}")
|
||||
|
||||
|
||||
# 修改密码
|
||||
tdLog.printNoPrefix("==========step3: alter user pass test")
|
||||
self.test_alter_pass()
|
||||
|
||||
|
||||
# 密码登录认证
|
||||
# 密码修改后的登录认证
|
||||
tdLog.printNoPrefix("==========step4: check login test")
|
||||
self.login_err(self.__user_list[0], "passwd1")
|
||||
self.login_err(self.__user_list[0], self.__passwd_list[0])
|
||||
self.login_currrent(self.__user_list[0], f"new{self.__passwd_list[0]}")
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue