From 3d212c9d8eb0190b1d43672a92f5fd65cbc577b1 Mon Sep 17 00:00:00 2001 From: Mauro Romito Date: Thu, 30 May 2024 19:07:32 +0200 Subject: [PATCH] fixed a test --- crates/matrix-sdk-ui/tests/integration/timeline/replies.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/matrix-sdk-ui/tests/integration/timeline/replies.rs b/crates/matrix-sdk-ui/tests/integration/timeline/replies.rs index 8ba2bd421a3..476bcca657e 100644 --- a/crates/matrix-sdk-ui/tests/integration/timeline/replies.rs +++ b/crates/matrix-sdk-ui/tests/integration/timeline/replies.rs @@ -388,6 +388,8 @@ async fn test_send_reply_with_event_id() { let _response = client.sync_once(sync_settings.clone()).await.unwrap(); server.reset().await; + assert_next_matches!(timeline_stream, VectorDiff::PushBack { .. }); + // Clear the timeline to make sure the old item does not need to be // available in it for the reply to work. timeline.clear().await;