From 170566ab932e7b042b95c8ab2fe2cafb04f409cf Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Mar 2026 14:12:34 +0000 Subject: [PATCH] style: run cargo fmt https://claude.ai/code/session_01Mdiz3XwyZcjqMkqicaynGs --- src/agent/thread_ops.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/agent/thread_ops.rs b/src/agent/thread_ops.rs index ed394399..e93a24c2 100644 --- a/src/agent/thread_ops.rs +++ b/src/agent/thread_ops.rs @@ -2176,7 +2176,10 @@ mod tests { None => Err("Internal error: thread no longer exists"), }; assert!(result.is_err()); - assert_eq!(result.unwrap_err(), "Internal error: thread no longer exists"); + assert_eq!( + result.unwrap_err(), + "Internal error: thread no longer exists" + ); } // Scenario 2: Thread existed then was removed (simulates disappearance @@ -2203,7 +2206,10 @@ mod tests { None => Err("Internal error: thread no longer exists"), }; assert!(result.is_err()); - assert_eq!(result.unwrap_err(), "Internal error: thread no longer exists"); + assert_eq!( + result.unwrap_err(), + "Internal error: thread no longer exists" + ); } }