From 210c29dc00f861f3698edebc8391a770a0bbd0cf Mon Sep 17 00:00:00 2001 From: cpwu Date: Thu, 12 May 2022 19:09:46 +0800 Subject: [PATCH] fix case --- tests/system-test/0-others/user_control.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/system-test/0-others/user_control.py b/tests/system-test/0-others/user_control.py index 981b033f19..74a2024381 100644 --- a/tests/system-test/0-others/user_control.py +++ b/tests/system-test/0-others/user_control.py @@ -167,16 +167,12 @@ class TDTestCase: def user_login(self, user, passwd): login_except = False - tdLog.printNoPrefix(login_except) try: with taos_connect(user=user, passwd=passwd) as cursor: cursor except BaseException: login_except = True cursor = None - - tdLog.printNoPrefix(f"end,{login_except}") - return login_except, cursor def login_currrent(self, user, passwd):