style: rustfmt vault_list.rs

This commit is contained in:
lucaronin
2026-03-03 02:35:11 +01:00
parent fbbfe0ea6d
commit d227cb4ac7

View File

@@ -163,11 +163,7 @@ mod tests {
let dir = tempfile::TempDir::new().unwrap();
let path = dir.path().join("legacy.json");
// Simulate old format without hidden_defaults field
fs::write(
&path,
r#"{"vaults":[],"active_vault":null}"#,
)
.unwrap();
fs::write(&path, r#"{"vaults":[],"active_vault":null}"#).unwrap();
let loaded = load_at(&path).unwrap();
assert!(loaded.hidden_defaults.is_empty());
}