From b929aa27b01943fc5f2018264aa4cfb52b695032 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sat, 25 Jul 2026 19:01:51 +0200 Subject: [PATCH] =?UTF-8?q?style(simulation):=20gate=20bounce=20=E2=80=94?= =?UTF-8?q?=20cargo=20fmt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- server/src/atlas/heightmap.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/server/src/atlas/heightmap.rs b/server/src/atlas/heightmap.rs index 9646ace52..852155268 100644 --- a/server/src/atlas/heightmap.rs +++ b/server/src/atlas/heightmap.rs @@ -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]