diff --git a/codex-rs/core/src/codex.rs b/codex-rs/core/src/codex.rs index 8f9f8c0f26..238a72e32f 100644 --- a/codex-rs/core/src/codex.rs +++ b/codex-rs/core/src/codex.rs @@ -2964,8 +2964,7 @@ mod tests { } fn zsh_shell(shell_snapshot: Option>) -> shell::Shell { - let (_tx, rx) = - tokio::sync::watch::channel(shell_snapshot); + let (_tx, rx) = tokio::sync::watch::channel(shell_snapshot); shell::Shell::Posix(shell::PosixShell { shell_path: "/bin/zsh".to_string(), rc_path: "/Users/example/.zshrc".to_string(),