From 5681b4e5083a453ee4f2a62dd78b1d7b47f3cc33 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Wed, 8 Jan 2025 15:53:10 +0100 Subject: [PATCH] fixup! --- .../src/tests/sliding_sync/room.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testing/matrix-sdk-integration-testing/src/tests/sliding_sync/room.rs b/testing/matrix-sdk-integration-testing/src/tests/sliding_sync/room.rs index 499908eecd..0e1f65c280 100644 --- a/testing/matrix-sdk-integration-testing/src/tests/sliding_sync/room.rs +++ b/testing/matrix-sdk-integration-testing/src/tests/sliding_sync/room.rs @@ -58,7 +58,7 @@ use tokio::{ sync::Mutex, time::{sleep, timeout}, }; -use tracing::{debug, error, info, warn}; +use tracing::{debug, error, info, trace, warn}; use wiremock::{matchers::AnyMatcher, Mock, MockServer}; use crate::helpers::{wait_for_room, TestClientBuilder}; @@ -901,6 +901,8 @@ async fn test_delayed_invite_response_and_sent_message_decryption() -> Result<() .expect("Timed out. Neither an UTD nor the sent message were found") .unwrap(); + trace!(?diff, "Received diff from Bob's room"); + if let VectorDiff::PushBack { value } = diff { if let Some(content) = value.as_event().map(|e| e.content()) { if let Some(message) = content.as_message() {