Skip to content

Commit

Permalink
test: Increase timeout for codecoverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Dec 20, 2024
1 parent c3094bb commit 7998e78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/matrix-sdk-integration-testing/src/tests/timeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ async fn test_stale_local_echo_time_abort_edit() {
{
let mut diffs = Vec::with_capacity(3);

while let Ok(Some(vector_diff)) = timeout(Duration::from_secs(5), stream.next()).await {
while let Ok(Some(vector_diff)) = timeout(Duration::from_secs(10), stream.next()).await {
diffs.push(vector_diff);
}

Expand Down Expand Up @@ -642,7 +642,7 @@ async fn test_room_keys_received_on_notification_client_trigger_redecryption() {
.expect("We should be able toe get a notification item for the given event");

// Alright, we should now receive an update that the event had been decrypted.
let _vector_diff = timeout(Duration::from_secs(5), stream.next()).await.unwrap().unwrap();
let _vector_diff = timeout(Duration::from_secs(10), stream.next()).await.unwrap().unwrap();

// Let's fetch the event again.
let item =
Expand Down

0 comments on commit 7998e78

Please sign in to comment.