chore: cargo fmt

Single-line collapse in DocsServiceImpl::delete's $in match arm
flagged by `cargo fmt --check` post-review. The v1 HANDBACK §8
claimed `cargo fmt --check` was green; that claim was false against
HEAD at audit time. This fixes the diff so all three gates exit 0
on a fresh checkout. The follow-up HANDBACK update replaces §8's
false attestation with a post-fix one.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MechaCat02
2026-06-02 20:35:47 +02:00
parent dee23ff682
commit bf26a256e8

View File

@@ -453,8 +453,7 @@ mod tests {
let Some(arr) = cond.value.as_array() else { let Some(arr) = cond.value.as_array() else {
return false; return false;
}; };
arr.iter() arr.iter().any(|v| actual == json_text(v).as_deref())
.any(|v| actual == json_text(v).as_deref())
} }
} }
} }