removed redundant imports

This commit is contained in:
debris
2017-11-14 17:47:41 +01:00
parent e6048e4a34
commit a22c48b6b0
16 changed files with 31 additions and 38 deletions

View File

@@ -264,8 +264,9 @@ mod tests {
#[test]
fn file_store() {
let path = ::devtools::RandomTempPath::new();
let store = FileStore(path.as_path().clone());
let tempdir = ::tempdir::TempDir::new("").unwrap();
let path = tempdir.path().join("file");
let store = FileStore(path);
let mut samples = store.load();
assert!(samples.is_empty());