We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a12682d commit 5d8b5f4Copy full SHA for 5d8b5f4
gix-features/tests/hash.rs
@@ -9,5 +9,8 @@ fn size_of_sha1() {
9
#[cfg(feature = "fast-sha1")]
10
#[test]
11
fn size_of_sha1() {
12
- assert_eq!(std::mem::size_of::<Sha1>(), if cfg!(target_arch = "x86") { 96 } else { 104 })
+ assert_eq!(
13
+ std::mem::size_of::<Sha1>(),
14
+ if cfg!(target_arch = "x86") { 96 } else { 104 }
15
+ )
16
}
0 commit comments