diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 12:50:16 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 13:29:42 -0400 |
commit | c3ef358c01956bfa44a7427a2548943c3f045138 (patch) | |
tree | 25ea571fb39bccaa9cd0817f30114875e7382cee /cli/tests/integration_tests.rs | |
parent | 0cb64cef767170827806974e59075dc56c2eafe5 (diff) |
Remove unnecessary extern statements
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 7 |
1 files changed, 1 insertions, 6 deletions
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() { |