mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 20:07:09 +02:00
update the test now that the embedder must be specified
This commit is contained in:
parent
84f842233d
commit
2b120b89e4
2 changed files with 3 additions and 2 deletions
|
@ -364,7 +364,8 @@ async fn binary_quantize_clear_documents() {
|
|||
"###);
|
||||
|
||||
// Make sure the arroy DB has been cleared
|
||||
let (documents, _code) = index.search_post(json!({ "vector": [1, 1, 1] })).await;
|
||||
let (documents, _code) =
|
||||
index.search_post(json!({ "hybrid": { "embedder": "manual" }, "vector": [1, 1, 1] })).await;
|
||||
snapshot!(documents, @r###"
|
||||
{
|
||||
"hits": [],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue