Update some expect text to make sure they reflect the use of secret instead of a only a key to encrypt a store

This commit is contained in:
multi prise
2025-08-06 21:24:05 +02:00
committed by Damir Jelić
parent 8a0e61e95b
commit eb37a0d2e1
+2 -2
View File
@@ -1914,7 +1914,7 @@ mod tests {
SqliteCryptoStore::open(tmpdir_path.to_str().unwrap(), passphrase)
.await
.expect("Can't create a key protected store")
.expect("Can't create a encrypted protected store")
}
cryptostore_integration_tests!();
@@ -1946,7 +1946,7 @@ mod encrypted_tests {
SqliteCryptoStore::open(tmpdir_path.to_str().unwrap(), Some(pass))
.await
.expect("Can't create a key protected store")
.expect("Can't create a encrypted protected store")
}
cryptostore_integration_tests!();