[skip e2e] Refine code comments (#14024)

Signed-off-by: Binbin Lv <binbin.lv@zilliz.com>
pull/14065/head
binbin 2021-12-23 14:21:30 +08:00 committed by GitHub
parent ee19f2b9bd
commit 85d8cfcb94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -95,11 +95,11 @@ class Base:
class TestcaseBase(Base): class TestcaseBase(Base):
""" """
Additional methods; Additional methods;
Public methods that can be used to add cases. Public methods that can be used for test cases.
""" """
def _connect(self): def _connect(self):
""" Add an connection and create the connect """ """ Add a connection and create the connect """
res, is_succ = self.connection_wrap.connect(alias=DefaultConfig.DEFAULT_USING, host=param_info.param_host, res, is_succ = self.connection_wrap.connect(alias=DefaultConfig.DEFAULT_USING, host=param_info.param_host,
port=param_info.param_port) port=param_info.param_port)
return res return res