From f800dfc3cbce9a701c00d7827338db5c1bf8899c Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Wed, 10 Mar 2021 15:17:55 +1100 Subject: [PATCH] chore: remove unused import on non-windows (#9743) --- cli/tests/integration_tests.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 88527655c4..23d119d44a 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -7,7 +7,6 @@ use deno_runtime::deno_fetch::reqwest; use deno_runtime::deno_websocket::tokio_tungstenite; use std::fs; use std::io::{BufRead, Read, Write}; -use std::path::Path; use std::process::Command; use tempfile::TempDir; use test_util as util; @@ -5275,7 +5274,7 @@ console.log("finish"); .wait_with_output() .unwrap(); assert!(output.status.success()); - let exists = Path::new(&exe).exists(); + let exists = std::path::Path::new(&exe).exists(); assert!(exists, true); }