style: fix formatting

https://claude.ai/code/session_01GG37cPSH8vfi9nriukuorf
This commit is contained in:
Claude
2026-03-23 13:12:21 +00:00
parent d2098f1030
commit 47f80ddc22
+8 -2
View File
@@ -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"
);
}
}