Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
boraarslan committed Jun 10, 2022
1 parent eab2257 commit 635c39b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fastfield/multivalued/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,8 @@ mod tests {
index_writer.add_document(doc!(bool_field=> true, bool_field => false))?;
index_writer.add_document(doc!())?;
index_writer.add_document(doc!(bool_field=> false))?;
index_writer.add_document(doc!(bool_field=> true, bool_field => true, bool_field => false))?;
index_writer
.add_document(doc!(bool_field=> true, bool_field => true, bool_field => false))?;
index_writer.commit()?;

let searcher = index.reader()?.searcher();
Expand Down

0 comments on commit 635c39b

Please sign in to comment.