Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Oct 23, 2024
1 parent 10753e7 commit 4848b72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/store/re_chunk/tests/memory_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,8 @@ fn concat_single_is_noop() {
let unconcatenated =
memory_use(|| ArrowPrimitiveArray::from_vec((0..NUM_SCALARS).collect_vec()).to_boxed());

let concatenated = memory_use(|| {
re_chunk::util::concat_arrays(&[&*unconcatenated.0]).unwrap()
});
let concatenated =
memory_use(|| re_chunk::util::concat_arrays(&[&*unconcatenated.0]).unwrap());

(unconcatenated, concatenated)
});
Expand Down

0 comments on commit 4848b72

Please sign in to comment.