From 162e21a418a19985b654d391becc49bc08e89cb4 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Sun, 14 Feb 2016 03:31:10 +0100 Subject: [PATCH] tests/mktemp: fix build on nightly --- tests/mktemp.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/mktemp.rs b/tests/mktemp.rs index d765a40d4..fd933a20b 100644 --- a/tests/mktemp.rs +++ b/tests/mktemp.rs @@ -1,11 +1,8 @@ -extern crate tempdir; - -use tempdir::TempDir; - #[macro_use] mod common; use common::util::*; +use common::util::tempdir::TempDir; static UTIL_NAME: &'static str = "mktemp";