e2e_tests: remove unnecessary reference

Fixes clippy warning in Rust 1.68.

BUG=b:276487055
TEST=tools/clippy # with rust 1.68

Change-Id: I4482f26ac58de31931b82da5962899afc90f5377
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4391105
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-by: Dennis Kempin <denniskempin@google.com>
This commit is contained in:
Daniel Verkamp 2023-03-31 15:41:37 -07:00 committed by crosvm LUCI
parent 27d1a90062
commit 2855eaecb5

View file

@ -24,7 +24,7 @@ fn setup_env(build_type: &str) -> TempDir {
env::set_var("CARGO_CFG_TARGET_ARCH", "x86_64");
env::set_var("CARGO_CFG_TARGET_ENV", "gnu");
let deps = tempdir.path().join("deps");
std::fs::create_dir_all(&deps).unwrap();
std::fs::create_dir_all(deps).unwrap();
let out_dir = tempdir.path().join("build").join("crate_name").join("out");
std::fs::create_dir_all(&out_dir).unwrap();
env::set_var("OUT_DIR", out_dir.as_os_str().to_str().unwrap());