summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-03-10 15:17:55 +1100
committerGitHub <noreply@github.com>2021-03-10 15:17:55 +1100
commitf800dfc3cbce9a701c00d7827338db5c1bf8899c (patch)
treee2f283db127fc7fa15cbd00a59880f6b987699c2
parenta020ebde2d9c69a1e2616c96f907866d417f2e0f (diff)
chore: remove unused import on non-windows (#9743)
-rw-r--r--cli/tests/integration_tests.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 88527655c..23d119d44 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);
}