fix exec config

This commit is contained in:
Dylan Hurd
2025-10-04 02:02:54 -07:00
parent fc6163780f
commit 97a858c47d

View File

@@ -15,7 +15,8 @@ impl TestCodexExecBuilder {
.expect("should find binary for codex-exec");
cmd.current_dir(self.cwd.path())
.env("CODEX_HOME", self.home.path())
.env(CODEX_API_KEY_ENV_VAR, "dummy");
.env(CODEX_API_KEY_ENV_VAR, "dummy")
.arg("--custom-apply-patch");
cmd
}
pub fn cmd_with_server(&self, server: &MockServer) -> assert_cmd::Command {