mirror of
https://github.com/openai/codex.git
synced 2026-05-02 02:17:22 +00:00
Fix exec-server test helper clippy
Remove the now-unnecessary clone when configuring exec-server runtime paths from the test helper. Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
@@ -64,7 +64,7 @@ fn maybe_run_exec_server_from_test_binary() {
|
||||
std::process::exit(1);
|
||||
}
|
||||
};
|
||||
let runtime_paths = match ExecServerRuntimePaths::new(current_exe.clone()) {
|
||||
let runtime_paths = match ExecServerRuntimePaths::new(current_exe) {
|
||||
Ok(runtime_paths) => runtime_paths,
|
||||
Err(error) => {
|
||||
eprintln!("failed to configure exec-server runtime paths: {error}");
|
||||
|
||||
Reference in New Issue
Block a user