style: fix rustfmt formatting in cache test assertions

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
lucaronin
2026-03-02 23:26:57 +01:00
parent b649cba92a
commit e2e5befef1

View File

@@ -352,7 +352,9 @@ mod tests {
let entries = scan_vault_cached(vault).unwrap();
assert_eq!(entries.len(), 1);
assert!(
entries[0].path.starts_with(&vault.to_string_lossy().as_ref()),
entries[0]
.path
.starts_with(&vault.to_string_lossy().as_ref()),
"Entry path should start with vault path"
);
@@ -369,7 +371,9 @@ mod tests {
let entries2 = scan_vault_cached(vault).unwrap();
assert_eq!(entries2.len(), 1);
assert!(
entries2[0].path.starts_with(&vault.to_string_lossy().as_ref()),
entries2[0]
.path
.starts_with(&vault.to_string_lossy().as_ref()),
"After stale-cache invalidation, paths should use the current vault path, got: {}",
entries2[0].path
);