From 91e91e9801cfa9fd81d930c61f4f6855e400e40a Mon Sep 17 00:00:00 2001 From: torrybr <16907963+torrybr@users.noreply.github.com> Date: Mon, 22 Jul 2024 17:59:43 -0400 Subject: [PATCH] test: remove state check for starting location --- crates/matrix-sdk/tests/integration/room/joined.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/matrix-sdk/tests/integration/room/joined.rs b/crates/matrix-sdk/tests/integration/room/joined.rs index 5eff4d75fa5..9135aa43847 100644 --- a/crates/matrix-sdk/tests/integration/room/joined.rs +++ b/crates/matrix-sdk/tests/integration/room/joined.rs @@ -793,9 +793,6 @@ async fn test_start_live_location_share_for_room() { let response = room.start_live_location_share(3000, None).await.unwrap(); assert_eq!(event_id!("$h29iv0s8:example.com"), response.event_id); - - let state_events = room.get_state_events(StateEventType::BeaconInfo).await.unwrap(); - assert_eq!(state_events.len(), 1); } #[async_test]