style(simulation): cargo fmt — assert message wrap in drainage tests

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-23 08:59:48 +02:00
co-authored by Claude Fable 5
parent 60faf667a5
commit 5a382c2e56
+4 -1
View File
@@ -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"
);
}
}