From c3ef358c01956bfa44a7427a2548943c3f045138 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 16 Sep 2020 12:50:16 -0400 Subject: Remove unnecessary extern statements --- cli/tests/integration_tests.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'cli/tests') diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 41e5c5d96..1b9e9ef14 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1,14 +1,9 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -#[cfg(unix)] -extern crate nix; -extern crate tempfile; - -use test_util as util; - use futures::prelude::*; use std::io::{BufRead, Write}; use std::process::Command; use tempfile::TempDir; +use test_util as util; #[test] fn std_tests() { -- cgit v1.2.3