Skip to content

Commit d96a110

Browse files
committed
Fix build
1 parent c41601a commit d96a110

File tree

1 file changed

+2
-2
lines changed
  • crates/bitwarden-core/src/key_management

1 file changed

+2
-2
lines changed

crates/bitwarden-core/src/key_management/crypto.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ mod tests {
10001000
initialize_user_crypto(
10011001
&client1,
10021002
InitUserCryptoRequest {
1003-
user_id: Some(uuid::Uuid::new_v4()),
1003+
user_id: Some(UserId::new_v4()),
10041004
kdf_params: Kdf::PBKDF2 {
10051005
iterations: 100_000.try_into().unwrap(),
10061006
},
@@ -1024,7 +1024,7 @@ mod tests {
10241024
initialize_user_crypto(
10251025
&client2,
10261026
InitUserCryptoRequest {
1027-
user_id: Some(uuid::Uuid::new_v4()),
1027+
user_id: Some(UserId::new_v4()),
10281028
// NOTE: THIS CHANGES KDF SETTINGS. We ensure in this test that even with different
10291029
// KDF settings the pin can unlock the user key.
10301030
kdf_params: Kdf::PBKDF2 {

0 commit comments

Comments
 (0)