From 47f80ddc221caf869319977eb45d8d43249e64eb Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Mar 2026 13:12:21 +0000 Subject: [PATCH] style: fix formatting https://claude.ai/code/session_01GG37cPSH8vfi9nriukuorf --- 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 1097f039..0fcddda1 100644 --- a/src/agent/thread_ops.rs +++ b/src/agent/thread_ops.rs @@ -2183,7 +2183,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 @@ -2210,7 +2213,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" + ); } }