Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions helix-db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,7 @@ dev = ["debug-output", "server", "bench"]
dev-instance = []
default = ["server"]
production = ["api-key","server"]

[[test]]
name = "capacity_optimization_benches"
path = "benches/capacity_optimization_benches.rs"
Comment on lines +88 to +91
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: Missing newline at end of file - rustfmt typically adds one

Suggested change
[[test]]
name = "capacity_optimization_benches"
path = "benches/capacity_optimization_benches.rs"
[[test]]
name = "capacity_optimization_benches"
path = "benches/capacity_optimization_benches.rs"
Prompt To Fix With AI
This is a comment left during a code review.
Path: helix-db/Cargo.toml
Line: 80:83

Comment:
**style:** Missing newline at end of file - `rustfmt` typically adds one

```suggestion
[[test]]
name = "capacity_optimization_benches"
path = "benches/capacity_optimization_benches.rs"
```

How can I resolve this? If you propose a fix, please make it concise.

3 changes: 1 addition & 2 deletions helix-db/benches/bm25_benches.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
mod tests {
use helix_db::{
debug_println,
helix_engine::bm25::bm25::{HBM25Config, BM25},
helix_engine::bm25::bm25::{BM25, HBM25Config},
utils::{id::v6_uuid, tqdm::tqdm},
};

Expand Down Expand Up @@ -155,4 +155,3 @@ mod tests {
}
}
}

Loading
Loading