From 5a382c2e56c49ea33fbaea372b06d5f01446bfa4 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Thu, 23 Jul 2026 08:59:48 +0200 Subject: [PATCH] =?UTF-8?q?style(simulation):=20cargo=20fmt=20=E2=80=94=20?= =?UTF-8?q?assert=20message=20wrap=20in=20drainage=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- server/src/atlas/drainage.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/src/atlas/drainage.rs b/server/src/atlas/drainage.rs index ea433f3e2..16fc278e5 100644 --- a/server/src/atlas/drainage.rs +++ b/server/src/atlas/drainage.rs @@ -1035,6 +1035,9 @@ mod tests { let high = classify_river_cell(river_max_accumulation, river_max_accumulation); assert_eq!(low, 0, "just above threshold should be a stream"); assert_eq!(mid, 1, "mid-range accumulation should be a tributary"); - assert_eq!(high, 2, "the body's max river-cell accumulation should be trunk"); + assert_eq!( + high, 2, + "the body's max river-cell accumulation should be trunk" + ); } }