Skip to content

Commit

Permalink
fixup! Fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinesp authored and Hywan committed Aug 14, 2024
1 parent 1155f75 commit 6becbf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/matrix-sdk-base/src/sliding_sync/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2120,7 +2120,7 @@ mod tests {
let room_id = room_id!("!r:e.uk");
let room = http::response::Room::new();
let response = response_with_room(room_id, room);
client.process_sliding_sync(&response, &()).await.expect("Failed to process sync");
client.process_sliding_sync(&response, &(), true).await.expect("Failed to process sync");

// Discard first room info update
let _ = room_info_notable_update_stream.recv().await;
Expand All @@ -2143,7 +2143,7 @@ mod tests {
required_state: events,
});
let response = response_with_room(room_id, room);
client.process_sliding_sync(&response, &()).await.expect("Failed to process sync");
client.process_sliding_sync(&response, &(), true).await.expect("Failed to process sync");

// Room was already joined, no MEMBERSHIP update should be triggered here
assert_matches!(
Expand All @@ -2170,7 +2170,7 @@ mod tests {
required_state: events,
});
let response = response_with_room(room_id, room);
client.process_sliding_sync(&response, &()).await.expect("Failed to process sync");
client.process_sliding_sync(&response, &(), true).await.expect("Failed to process sync");

// Then a room info notable update is received.
let update = room_info_notable_update_stream.recv().await;
Expand Down

0 comments on commit 6becbf6

Please sign in to comment.