mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
chore: remove unused import on non-windows (#9743)
This commit is contained in:
parent
a020ebde2d
commit
f800dfc3cb
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue