From eee98ab0b2aa09c3e6d455b2132de87c1418a389 Mon Sep 17 00:00:00 2001 From: cpwu Date: Thu, 12 May 2022 18:44:38 +0800 Subject: [PATCH] fix case --- tests/system-test/0-others/user_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/0-others/user_control.py b/tests/system-test/0-others/user_control.py index 5fb950b93f..80d376aae5 100644 --- a/tests/system-test/0-others/user_control.py +++ b/tests/system-test/0-others/user_control.py @@ -184,7 +184,7 @@ class TDTestCase: def login_currrent(self, user, passwd): login_except, _ = self.user_login(user, passwd) if login_except: - tdLog.exit("connect failed, user and pass do not match!") + tdLog.exit(f"connect failed, user: {user} and pass: {passwd} do not match!") else: tdLog.info("connect successfully, user and pass matched!")