From 27c22d116627e4a873b03c1c9f8e6faf68e416c1 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Mon, 25 Nov 2024 19:14:33 +0800 Subject: [PATCH] test: remove sparse embedding in output fields for fts cases (#37980) Signed-off-by: zhuwenxing --- tests/python_client/testcases/test_full_text_search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python_client/testcases/test_full_text_search.py b/tests/python_client/testcases/test_full_text_search.py index e5a2cb7f9bcfd..6a82ea09c7f8c 100644 --- a/tests/python_client/testcases/test_full_text_search.py +++ b/tests/python_client/testcases/test_full_text_search.py @@ -2655,7 +2655,7 @@ def test_full_text_search_for_growing_segment( param={}, limit=limit + offset, offset=0, - output_fields=["id", "text", "text_sparse_emb"]) + output_fields=["id", "text"]) full_res_id_list = [] for i in range(nq): res = full_res_list[i] @@ -2671,7 +2671,7 @@ def test_full_text_search_for_growing_segment( param={}, limit=limit, offset=offset, - output_fields=["id", "text", "text_sparse_emb"]) + output_fields=["id", "text"]) # verify correctness for i in range(nq):