fix clippy

This commit is contained in:
Irevoire
2022-10-25 10:58:55 +02:00
committed by Clément Renault
parent 7e52f1effb
commit 9c00b159ba
2 changed files with 9 additions and 11 deletions

View File

@ -40,7 +40,8 @@ pub fn default_snapshot_settings_for_test<'a>(
Cow::Owned(format!("{counter}"))
};
let store_whole_snapshot = std::env::var("MEILI_TEST_FULL_SNAPS").unwrap_or("false".to_owned());
let store_whole_snapshot =
std::env::var("MEILI_TEST_FULL_SNAPS").unwrap_or_else(|_| "false".to_owned());
let store_whole_snapshot: bool = store_whole_snapshot.parse().unwrap();
(settings, snap_name, store_whole_snapshot)