style: fix fmt in client.rs test

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Valerio 2026-03-30 12:18:57 +02:00
parent 199dab6dfa
commit 4cba36337b

View file

@ -641,7 +641,10 @@ mod tests {
headers.insert("content-type", "application/pdf".parse().unwrap());
assert!(is_pdf_content_type(&headers));
headers.insert("content-type", "application/pdf; charset=utf-8".parse().unwrap());
headers.insert(
"content-type",
"application/pdf; charset=utf-8".parse().unwrap(),
);
assert!(is_pdf_content_type(&headers));
headers.insert("content-type", "Application/PDF".parse().unwrap());