Skip to content

Commit

Permalink
Fix build failures for sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Jul 3, 2024
1 parent 055aabe commit 57d0c68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/matrix-sdk-sqlite/src/crypto_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1387,7 +1387,7 @@ mod encrypted_tests {

#[async_test]
async fn cache_cleared() {
let store = get_store("cache_cleared", None).await;
let store = get_store("cache_cleared", None, true).await;
// Given we created a session and saved it in the store
let (account, session) = cryptostore_integration_tests::get_account_and_session().await;
let sender_key = session.sender_key.to_base64();
Expand All @@ -1414,7 +1414,7 @@ mod encrypted_tests {

#[async_test]
async fn cache_cleared_after_device_update() {
let store = get_store("cache_cleared_after_device_update", None).await;
let store = get_store("cache_cleared_after_device_update", None, true).await;
// Given we created a session and saved it in the store
let (account, session) = cryptostore_integration_tests::get_account_and_session().await;
let sender_key = session.sender_key.to_base64();
Expand Down

0 comments on commit 57d0c68

Please sign in to comment.