add comments to integration test

This commit is contained in:
ad hoc 2022-04-04 21:17:06 +02:00
parent 1810927dbd
commit 59e41d98e3
No known key found for this signature in database
GPG Key ID: 4F00A782990CC643
1 changed files with 2 additions and 1 deletions

View File

@ -181,6 +181,7 @@ fn test_disable_typo_on_attribute() {
let txn = index.read_txn().unwrap();
let mut search = Search::new(&txn, &index);
// typo in `antebel(l)um`
search.query("antebelum");
search.limit(10);
search.authorize_typos(true);
@ -194,10 +195,10 @@ fn test_disable_typo_on_attribute() {
let config = IndexerConfig::default();
let mut builder = Settings::new(&mut txn, &index, &config);
// disable typos on `description`
builder.set_exact_attributes(vec!["description".to_string()].into_iter().collect());
builder.execute(|_| ()).unwrap();
// typo is now supported for 4 letters words
let mut search = Search::new(&txn, &index);
search.query("antebelum");
search.limit(10);