fix: Update test compactor limit values

pull/24376/head
Carol (Nichols || Goulding) 2022-10-13 14:25:10 -04:00
parent cdd01eb3fc
commit 082d045633
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
1 changed files with 2 additions and 2 deletions

View File

@ -910,7 +910,7 @@ mod tests {
let mut config = make_compactor_config();
// Set the memory budget such that only one of the files will be compacted in a group
config.memory_budget_bytes = 4600;
config.memory_budget_bytes = 4_900;
let metrics = Arc::new(metric::Registry::new());
let compactor = Arc::new(Compactor::new(
@ -1015,7 +1015,7 @@ mod tests {
let mut config = make_compactor_config();
// Set the memory budget such that two of the files will be compacted in a group
config.memory_budget_bytes = 9_200;
config.memory_budget_bytes = 9_800;
let metrics = Arc::new(metric::Registry::new());
let compactor = Arc::new(Compactor::new(