Fix connection_connect_params assert case (#15244)

See also: #15235

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
pull/15248/head
XuanYang-cn 2022-01-17 16:05:35 +08:00 committed by GitHub
parent 1c3abbb052
commit 10706b61fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ class TestConnectionOperation(TestcaseBase):
# list all connections and check the response
list_content = [(connect_name, "GrpcHandler")] if connect_name is DefaultConfig.DEFAULT_USING else \
[(DefaultConfig.DEFAULT_USING, None), (connect_name, ct.Connect_Object_Name)]
[(DefaultConfig.DEFAULT_USING, None), (connect_name, "GrpcHandler")]
self.connection_wrap.list_connections(check_task=ct.CheckTasks.ccr,
check_items={ct.list_content: list_content})