Skip to content

Commit

Permalink
adjust numbers for memory consumption of BucketBackend
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbepop committed May 1, 2024
1 parent 064ef76 commit 6724859
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ pub trait BackendStats {
}

impl BackendStats for backend::BucketBackend<DefaultSymbol> {
const MIN_OVERHEAD: f64 = 2.1;
const MAX_OVERHEAD: f64 = 2.33;
const MAX_ALLOCATIONS: usize = 66;
const MAX_DEALLOCATIONS: usize = 43;
const MIN_OVERHEAD: f64 = 2.2;
const MAX_OVERHEAD: f64 = 3.1;
const MAX_ALLOCATIONS: usize = 65;
const MAX_DEALLOCATIONS: usize = 42;
const NAME: &'static str = "BucketBackend";
}

Expand Down

0 comments on commit 6724859

Please sign in to comment.