Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Jan 8, 2025
1 parent e0661ab commit 5681b4e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down Expand Up @@ -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() {
Expand Down

0 comments on commit 5681b4e

Please sign in to comment.