Skip to content

Commit

Permalink
fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
abaxter authored and abaxter committed Oct 3, 2024
1 parent 30d5c53 commit 62a8186
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/bucket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2737,7 +2737,11 @@ mod tests {

//TODO: Fails if page_size != 4096? Db.Info?
assert_eq!(0, stats.branch_alloc, "unexpected BranchAlloc");
assert_eq!((page_size::get() * 2) as i64, stats.leaf_alloc, "unexpected LeafAlloc");
assert_eq!(
(page_size::get() * 2) as i64,
stats.leaf_alloc,
"unexpected LeafAlloc"
);

assert_eq!(3, stats.bucket_n, "unexpected BucketN");
assert_eq!(1, stats.inline_bucket_n, "unexpected InlineBucketN");
Expand Down

0 comments on commit 62a8186

Please sign in to comment.