Fix formatting (cargo fmt)

This commit is contained in:
Anton Tarasenko 2020-12-02 13:22:54 +07:00
parent 5602ee7c0a
commit 2bffa412ea

View File

@ -28,7 +28,13 @@ fn prepare_db_copy(copy_id: &str, clear_moved: bool) -> (String, TestCleanup) {
original_db original_db
.write_copy(path::Path::new(&path)) .write_copy(path::Path::new(&path))
.expect("Should be able to create a new copy of the fixture database."); .expect("Should be able to create a new copy of the fixture database.");
(path.clone(), TestCleanup { path: path.to_owned(), clear_moved: clear_moved }) (
path.clone(),
TestCleanup {
path: path.to_owned(),
clear_moved: clear_moved,
},
)
} }
#[test] #[test]