From 1ca495f5a348b441f085a727edc2d6643be1d167 Mon Sep 17 00:00:00 2001 From: Hunter Bown Date: Thu, 21 May 2026 16:22:23 +0800 Subject: [PATCH] style: cargo fmt --- crates/tui/src/client/chat.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/tui/src/client/chat.rs b/crates/tui/src/client/chat.rs index ab935268..3a73611d 100644 --- a/crates/tui/src/client/chat.rs +++ b/crates/tui/src/client/chat.rs @@ -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,