mirror of
https://github.com/bitwarden/browser
synced 2026-02-12 22:44:11 +00:00
Fix windows
This commit is contained in:
@@ -331,6 +331,7 @@ mod tests {
|
||||
|
||||
let result =
|
||||
<Biometric as BiometricTrait>::get_biometric_secret(test, test, Some(key_material))
|
||||
.await
|
||||
.unwrap();
|
||||
crate::password::delete_password("test", "test").await.unwrap();
|
||||
assert_eq!(result, "secret");
|
||||
|
||||
@@ -120,7 +120,7 @@ mod tests {
|
||||
delete_password("BitwardenTest", "BitwardenTest").await.unwrap();
|
||||
|
||||
// Ensure password is deleted
|
||||
match get_password("BitwardenTest", "BitwardenTest") {
|
||||
match get_password("BitwardenTest", "BitwardenTest").await {
|
||||
Ok(_) => panic!("Got a result"),
|
||||
Err(e) => assert_eq!("Password not found.", e.to_string()),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user