Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kpreid committed Nov 14, 2023
1 parent 2ef8e05 commit 46cbfad
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions all-is-cubes/src/math/vol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -502,14 +502,14 @@ mod tests {
assert_eq!(
format!("{vol:#?}"),
indoc::indoc! {"
Vol<(), ZMaj> {
bounds: GridAab(
10..14 (4),
0..1 (1),
0..1 (1),
),
}\
"}
Vol<(), ZMaj> {
bounds: GridAab(
10..14 (4),
0..1 (1),
0..1 (1),
),
}\
"}
)
}

Expand All @@ -519,20 +519,20 @@ mod tests {
assert_eq!(
format!("{vol:#?}"),
indoc::indoc! {"
Vol<alloc::boxed::Box<[i32]>, ZMaj> {
bounds: GridAab(
10..14 (4),
0..1 (1),
0..1 (1),
),
contents: [
10,
11,
12,
13,
],
}\
"}
Vol<alloc::boxed::Box<[i32]>, ZMaj> {
bounds: GridAab(
10..14 (4),
0..1 (1),
0..1 (1),
),
contents: [
10,
11,
12,
13,
],
}\
"}
)
}

Expand All @@ -542,15 +542,15 @@ mod tests {
assert_eq!(
format!("{vol:#?}"),
indoc::indoc! {"
Vol<alloc::boxed::Box<[i32]>, ZMaj> {
bounds: GridAab(
0..64 (64),
0..1 (1),
0..1 (1),
),
contents: [...64 elements],
}\
"}
Vol<alloc::boxed::Box<[i32]>, ZMaj> {
bounds: GridAab(
0..64 (64),
0..1 (1),
0..1 (1),
),
contents: [...64 elements],
}\
"}
)
}

Expand Down

0 comments on commit 46cbfad

Please sign in to comment.