Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
hzxa21 committed Oct 28, 2024
1 parent 36a6ce5 commit 14bf20b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/compute/src/memory/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,12 @@ mod tests {
storage_config.cache.meta_cache_capacity_mb = Some(128);
storage_config.shared_buffer_capacity_mb = Some(1024);
storage_config.compactor_memory_limit_mb = Some(512);
let memory_config = storage_memory_config(total_non_reserved_memory_bytes, true, &storage_config, false);
let memory_config = storage_memory_config(
total_non_reserved_memory_bytes,
true,
&storage_config,
false,
);
assert_eq!(memory_config.block_cache_capacity_mb, 512);
assert_eq!(memory_config.meta_cache_capacity_mb, 128);
assert_eq!(memory_config.shared_buffer_capacity_mb, 1024);
Expand Down

0 comments on commit 14bf20b

Please sign in to comment.