Revert test directory cleaning change.

This commit is contained in:
Eric Huss 2019-06-18 14:14:24 -07:00
parent 22a8715a8b
commit 00822903bb

View File

@ -28,10 +28,7 @@ lazy_static! {
}
path.push(CARGO_INTEGRATION_TEST_DIR);
path.rm_rf();
path.mkdir_p();
path
};
@ -62,7 +59,9 @@ pub fn init_root() -> TestIdGuard {
let guard = TestIdGuard { _private: () };
root().mkdir_p();
let r = root();
r.rm_rf();
r.mkdir_p();
guard
}