From 54abe79fb19af2d17fc3738f85f774b802a75cfd Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 7 Apr 2019 10:18:52 +0200 Subject: [PATCH] remove redundant import --- src/common.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common.rs b/src/common.rs index b812886..9e321ee 100644 --- a/src/common.rs +++ b/src/common.rs @@ -285,7 +285,6 @@ impl Config { #[cfg(feature = "tmp")] pub fn tempdir(mut self) -> ConfigWithTemp { - use tempfile; let tmp = tempfile::Builder::new().prefix("compiletest").tempdir() .expect("failed to create temporary directory"); self.build_base = tmp.path().to_owned();