From eb37a0d2e14f34565483f8d65d3dc39b243dd228 Mon Sep 17 00:00:00 2001 From: multi prise Date: Wed, 6 Aug 2025 21:24:05 +0200 Subject: [PATCH] Update some expect text to make sure they reflect the use of secret instead of a only a key to encrypt a store --- crates/matrix-sdk-sqlite/src/crypto_store.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/matrix-sdk-sqlite/src/crypto_store.rs b/crates/matrix-sdk-sqlite/src/crypto_store.rs index 1da9c4cc7..8f682cfe3 100644 --- a/crates/matrix-sdk-sqlite/src/crypto_store.rs +++ b/crates/matrix-sdk-sqlite/src/crypto_store.rs @@ -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!();