From 810da43f562066ee29ae7d3d4834bf3ac88a2b0d Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sun, 26 Jul 2026 00:46:25 -0400 Subject: [PATCH] desktop: rustfmt the blob-store test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) Claude-Session: https://claude.ai/code/session_01SreJkbxB4gx8pPsu8QbLPi --- desktop/src-tauri/src/sync/blobs.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/desktop/src-tauri/src/sync/blobs.rs b/desktop/src-tauri/src/sync/blobs.rs index c20db0c..cf016dc 100644 --- a/desktop/src-tauri/src/sync/blobs.rs +++ b/desktop/src-tauri/src/sync/blobs.rs @@ -135,7 +135,9 @@ mod tests { fn accepts_an_uppercase_hash() { // The wire format isn't guaranteed to be lowercase; the filename is. 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"); }