desktop: rustfmt the blob-store test
Desktop (Tauri) / Windows installer (cross-compiled) (push) Successful in 1m57s
Desktop (Tauri) / Tauri desktop (Linux) (push) Successful in 3m51s

One hunk from run 2911. Clippy and all 67 tests — including the six new blob
tests and the path-traversal guard — had already passed on the same code.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SreJkbxB4gx8pPsu8QbLPi
This commit is contained in:
2026-07-26 00:46:25 -04:00
co-authored by Claude Opus 5
parent ed623a7bef
commit 810da43f56
+3 -1
View File
@@ -135,7 +135,9 @@ mod tests {
fn accepts_an_uppercase_hash() { fn accepts_an_uppercase_hash() {
// The wire format isn't guaranteed to be lowercase; the filename is. // The wire format isn't guaranteed to be lowercase; the filename is.
let store = store("case"); let store = store("case");
store.store(&HELLO.to_ascii_uppercase(), b"hello").expect("store"); store
.store(&HELLO.to_ascii_uppercase(), b"hello")
.expect("store");
assert!(store.has(HELLO), "should be found under the lowercase name"); assert!(store.has(HELLO), "should be found under the lowercase name");
} }