summaryrefslogtreecommitdiffstats
path: root/ignore/src/dir.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ignore/src/dir.rs')
-rw-r--r--ignore/src/dir.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/ignore/src/dir.rs b/ignore/src/dir.rs
index 479e0c24..12201f22 100644
--- a/ignore/src/dir.rs
+++ b/ignore/src/dir.rs
@@ -721,10 +721,9 @@ mod tests {
use std::io::Write;
use std::path::Path;
- use tempfile::{self, TempDir};
-
use dir::IgnoreBuilder;
use gitignore::Gitignore;
+ use tests::TempDir;
use Error;
fn wfile<P: AsRef<Path>>(path: P, contents: &str) {
@@ -744,7 +743,7 @@ mod tests {
}
fn tmpdir(prefix: &str) -> TempDir {
- tempfile::Builder::new().prefix(prefix).tempdir().unwrap()
+ TempDir::new().unwrap()
}
#[test]