style: cargo fmt

This commit is contained in:
Hunter Bown
2026-05-21 16:22:23 +08:00
parent a5501e608a
commit 1ca495f5a3
+4 -1
View File
@@ -2910,7 +2910,10 @@ mod stream_decoder_tests {
// to and `retrieve_tool_result ref=sha:` reads back from.
let path = crate::tools::truncate::sha_spillover_path(&sha)
.expect("sha spillover path resolvable under test root");
assert!(path.exists(), "large write_file output not persisted: {path:?}");
assert!(
path.exists(),
"large write_file output not persisted: {path:?}"
);
let persisted = std::fs::read_to_string(&path).expect("read persisted spillover");
assert_eq!(
persisted, big_diff,