1
0
Fork 0
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:
Kitson Kelly 2021-03-10 15:17:55 +11:00 committed by GitHub
parent a020ebde2d
commit f800dfc3cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}