[skip ci] Update case exception message (#13323)

Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
pull/13354/head
ThreadDao 2021-12-14 16:47:33 +08:00 committed by GitHub
parent f6c17ce4b6
commit 577abac9b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ class TestUtilityParams(TestcaseBase):
"""
self._connect()
c_name = cf.gen_unique_str(prefix)
error = {ct.err_code: 0, ct.err_msg: "describe collection failed: can't find collection:"}
error = {ct.err_code: 1, ct.err_msg: f"DescribeCollection failed: can't find collection: {c_name}"}
self.utility_wrap.drop_collection(c_name, check_task=CheckTasks.err_res, check_items=error)
@pytest.mark.tags(CaseLabel.L2)