From 1de5e13c4edc54dbefd3dc003934953402a70c3a Mon Sep 17 00:00:00 2001 From: khai96_ Date: Tue, 28 Nov 2023 02:08:32 +0700 Subject: [PATCH] fix: clippy --- crates/cli/tests/install.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/cli/tests/install.rs b/crates/cli/tests/install.rs index 455c6aab..47405695 100644 --- a/crates/cli/tests/install.rs +++ b/crates/cli/tests/install.rs @@ -12,7 +12,6 @@ use pipe_trait::Pipe; use std::{ fs::{self, OpenOptions}, io::Write, - path::Path, }; #[test] @@ -165,6 +164,8 @@ fn frozen_lockfile_should_be_able_to_handle_big_lockfile() { eprintln!("Executing command..."); pacquet.with_args(["install", "--frozen-lockfile"]).assert().success(); + + drop((root, mock_instance)); // cleanup } #[test]