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:
starr-openai
2026-04-15 13:44:13 -07:00
parent e5e2aca735
commit a89dffb191

View File

@@ -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}");