Skip to content

Commit

Permalink
Move case for empty batch
Browse files Browse the repository at this point in the history
  • Loading branch information
tellet-q authored and generall committed Jul 1, 2024
1 parent 4806dd7 commit 4b5cc9b
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions tests/congruence_tests/test_query_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def test_multivec_query_batch():
compare_client_results(local_client, remote_client, searcher.multivec_query_batch_text)


def test_dense_query():
def test_dense_query_batch():
fixture_points = generate_fixtures()

searcher = TestQueryBatchSearcher()
Expand All @@ -179,17 +179,4 @@ def test_dense_query():
compare_client_results(local_client, remote_client, searcher.dense_query_batch_text)
compare_client_results(local_client, remote_client, searcher.dense_query_batch_image)
compare_client_results(local_client, remote_client, searcher.dense_query_batch_code)


def test_dense_query_empty_batch():
fixture_points = generate_fixtures()

searcher = TestQueryBatchSearcher()

local_client = init_local()
init_client(local_client, fixture_points)

remote_client = init_remote()
init_client(remote_client, fixture_points)

compare_client_results(local_client, remote_client, searcher.dense_query_batch_empty)

0 comments on commit 4b5cc9b

Please sign in to comment.