From bc170201ddb1e9c8fb04540ea38ebc3aeafeaf09 Mon Sep 17 00:00:00 2001 From: nico <109071306+NicoYuan1986@users.noreply.github.com> Date: Wed, 24 Sep 2025 10:54:03 +0800 Subject: [PATCH] test: update test case (#44503) Signed-off-by: nico --- .../milvus_client/test_milvus_client_collection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python_client/milvus_client/test_milvus_client_collection.py b/tests/python_client/milvus_client/test_milvus_client_collection.py index 4bbafc2508..6295c5cc5f 100644 --- a/tests/python_client/milvus_client/test_milvus_client_collection.py +++ b/tests/python_client/milvus_client/test_milvus_client_collection.py @@ -3345,8 +3345,8 @@ class TestMilvusClientRenameCollectionInValid(TestMilvusClientV2Base): collection_name = cf.gen_unique_str(prefix) # 1. create collection self.create_collection(client, collection_name, default_dim) - error = {ct.err_code: 65535, ct.err_msg: f"duplicated new collection name {collection_name} in database default" - f"with other collection name or alias"} + error = {ct.err_code: 65535, ct.err_msg: f"duplicated new collection name {collection_name} in database " + f"default with other collection name or alias"} self.rename_collection(client, collection_name, collection_name, check_task=CheckTasks.err_res, check_items=error)