From 20df6dece10c0f4ed32330504f1b0439c34685bd Mon Sep 17 00:00:00 2001 From: Pushkar Mishra Date: Mon, 8 Apr 2024 11:47:33 +0530 Subject: [PATCH] cargo fmt Signed-off-by: Pushkar Mishra --- fs-storage/src/file_storage.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs-storage/src/file_storage.rs b/fs-storage/src/file_storage.rs index d0207cb5..d318d632 100644 --- a/fs-storage/src/file_storage.rs +++ b/fs-storage/src/file_storage.rs @@ -197,7 +197,7 @@ mod tests { let mut data_to_write = BTreeMap::new(); data_to_write.insert("key1".to_string(), "value1".to_string()); - data_to_write.insert("key2".to_string(), "value2".to_string()); + data_to_write.insert("key2".to_string(), "value2".to_string()); // file_storage.set("key1".to_string(), "value1".to_string()); // file_storage.set("key2".to_string(), "value2".to_string()); @@ -226,7 +226,7 @@ mod tests { let mut data_to_write = BTreeMap::new(); data_to_write.insert("key1".to_string(), "value1".to_string()); data_to_write.insert("key2".to_string(), "value2".to_string()); - + file_storage.value_by_id = data_to_write.clone(); file_storage