style: cargo fmt
Some checks are pending
CI / Test (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Docs (push) Waiting to run

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Valerio 2026-04-17 12:03:22 +02:00
parent 7f0420bbf0
commit 0463b5e263

View file

@ -888,8 +888,7 @@ mod tests {
// function must walk the whole string rejecting each one. With the
// `+1` bug this panicked the first time `search_from` crossed a
// 2-byte char. With the fix it should return None cleanly.
let markdown =
"Наша история ![foo needle bar](a.png) Ещё текст ![needle](b.png) Конец 'Ч'";
let markdown = "Наша история ![foo needle bar](a.png) Ещё текст ![needle](b.png) Конец 'Ч'";
assert_eq!(find_content_position(markdown, "needle"), None);
}