[skip e2e] Remove unused parameter (#14548)

Signed-off-by: Binbin Lv <binbin.lv@zilliz.com>
pull/14542/merge
binbin 2021-12-29 20:55:47 +08:00 committed by GitHub
parent 3e02ea1822
commit 28b0189de8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2581,7 +2581,7 @@ class TestSearchBase:
"""
collection_name = gen_unique_str(uid)
with pytest.raises(Exception) as e:
res = connect.search(collection_name, **default_query)
connect.search(collection_name, **default_query)
@pytest.mark.tags(CaseLabel.L0)
def test_search_distance_l2(self, connect, collection):