Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Nov 27, 2023
1 parent a12682d commit 5d8b5f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gix-features/tests/hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ fn size_of_sha1() {
#[cfg(feature = "fast-sha1")]
#[test]
fn size_of_sha1() {
assert_eq!(std::mem::size_of::<Sha1>(), if cfg!(target_arch = "x86") { 96 } else { 104 })
assert_eq!(
std::mem::size_of::<Sha1>(),
if cfg!(target_arch = "x86") { 96 } else { 104 }
)
}

0 comments on commit 5d8b5f4

Please sign in to comment.