From 2bffa412ea43e084712adea166dad7349c9b0e08 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Wed, 2 Dec 2020 13:22:54 +0700 Subject: [PATCH] Fix formatting (`cargo fmt`) --- src/database/tests.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/database/tests.rs b/src/database/tests.rs index d47f73a..a45d8fa 100644 --- a/src/database/tests.rs +++ b/src/database/tests.rs @@ -28,7 +28,13 @@ fn prepare_db_copy(copy_id: &str, clear_moved: bool) -> (String, TestCleanup) { original_db .write_copy(path::Path::new(&path)) .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]