mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
Fix #1714 test
This commit is contained in:
parent
96d4242b93
commit
7f88c4ff2f
1 changed files with 2 additions and 2 deletions
|
@ -1575,11 +1575,11 @@ mod tests {
|
|||
let rtxn = index.read_txn().unwrap();
|
||||
|
||||
// Only the first document should match.
|
||||
let count = index.word_docids.get(&rtxn, "化妆包").unwrap().unwrap().len();
|
||||
let count = index.word_docids.get(&rtxn, "huàzhuāngbāo").unwrap().unwrap().len();
|
||||
assert_eq!(count, 1);
|
||||
|
||||
// Only the second document should match.
|
||||
let count = index.word_docids.get(&rtxn, "包").unwrap().unwrap().len();
|
||||
let count = index.word_docids.get(&rtxn, "bāo").unwrap().unwrap().len();
|
||||
assert_eq!(count, 1);
|
||||
|
||||
let mut search = crate::Search::new(&rtxn, &index);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue