Apply rustfmt to entire workspace
Runs cargo fmt --all; all 573 tests still passing, clippy still clean. No logic changes — formatting only. Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
3d524e2d63
commit
1c107fe58a
@@ -258,8 +258,13 @@ fn assert_gc_invariants(onion: &OnionFile) {
|
||||
|
||||
// 5. blake3_hex has correct length (64 chars)
|
||||
for rev in &revisions {
|
||||
assert_eq!(rev.blake3_hex.len(), 64,
|
||||
"revision {} has blake3_hex of wrong length {}", rev.revision, rev.blake3_hex.len());
|
||||
assert_eq!(
|
||||
rev.blake3_hex.len(),
|
||||
64,
|
||||
"revision {} has blake3_hex of wrong length {}",
|
||||
rev.revision,
|
||||
rev.blake3_hex.len()
|
||||
);
|
||||
}
|
||||
|
||||
// 6. Pages are accessible for every revision
|
||||
|
||||
Reference in New Issue
Block a user