We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 717c7b9 commit bf40bf8Copy full SHA for bf40bf8
testing/matrix-sdk-integration-testing/src/tests/sliding_sync/room.rs
@@ -1016,16 +1016,6 @@ async fn test_room_info_notable_update_deduplication() -> Result<()> {
1016
sleep(Duration::from_secs(2)).await;
1017
assert_eq!(bob_room.state(), RoomState::Joined);
1018
1019
- // Room update for join
1020
- assert_let!(Some(diffs) = stream.next().await);
1021
- assert_eq!(diffs.len(), 1);
1022
- assert_matches!(
1023
- &diffs[0],
1024
- VectorDiff::Set { index: 0, value: room } => {
1025
- assert_eq!(room.room_id(), alice_room.room_id());
1026
- }
1027
- );
1028
-
1029
// Sometimes Synapse sends the same message twice. Let's consume useless `Set`…
1030
// if they arrived before 3s.
1031
if let Ok(Some(diffs)) = timeout(Duration::from_secs(3), stream.next()).await {
0 commit comments