We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8652cf3 commit 69830d4Copy full SHA for 69830d4
1 file changed
ffi/src/lib.rs
@@ -2432,8 +2432,14 @@ fn test_hash_password_length() {
2432
.unwrap()
2433
.into();
2434
2435
- assert_eq!(HashPasswordLength(PASSWORD_HASH_LATEST) as usize, small_password_hash.len());
2436
- assert_eq!(HashPasswordLength(PASSWORD_HASH_LATEST) as usize, long_password_hash.len());
+ assert_eq!(
+ HashPasswordLength(PASSWORD_HASH_LATEST) as usize,
2437
+ small_password_hash.len()
2438
+ );
2439
2440
2441
+ long_password_hash.len()
2442
2443
}
2444
2445
#[test]
0 commit comments