Skip to content

Commit

Permalink
test: remove sparse embedding in output fields for fts cases (#37980)
Browse files Browse the repository at this point in the history
Signed-off-by: zhuwenxing <[email protected]>
  • Loading branch information
zhuwenxing authored Nov 25, 2024
1 parent 4cd7932 commit 27c22d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/python_client/testcases/test_full_text_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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):
Expand Down

0 comments on commit 27c22d1

Please sign in to comment.