style: cargo fmt

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
lucaronin
2026-04-06 13:25:06 +02:00
parent d284befd5f
commit 6762c5cec8
3 changed files with 20 additions and 6 deletions

View File

@@ -540,7 +540,10 @@ mod tests {
let entry = crate::vault::parse_md_file(&vault_path.join("AGENTS.md"), None).unwrap();
// H1 is now the primary title source
assert_eq!(entry.title, "AGENTS.md \u{2014} Vault Instructions for AI Agents");
assert_eq!(
entry.title,
"AGENTS.md \u{2014} Vault Instructions for AI Agents"
);
// Config files have no frontmatter type field — type is None
assert_eq!(entry.is_a, None);
}