style(simulation): gate bounce — cargo fmt

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-25 19:01:51 +02:00
co-authored by Claude Fable 5
parent e141a595b1
commit b929aa27b0
+8 -2
View File
@@ -304,7 +304,10 @@ mod tests {
let same = hm.downsample(2, 2);
assert_eq!((same.width, same.height), (2, 2));
assert_eq!(same.data, hm.data, "equal-size downsample must be an identity clone");
assert_eq!(
same.data, hm.data,
"equal-size downsample must be an identity clone"
);
let larger = hm.downsample(8, 8);
assert_eq!(
@@ -313,7 +316,10 @@ mod tests {
"downsample must early-return the original dims (no upsampling) when the \
target is larger than the source"
);
assert_eq!(larger.data, hm.data, "upsample request must be an identity clone");
assert_eq!(
larger.data, hm.data,
"upsample request must be an identity clone"
);
}
#[test]