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 a848506 commit d2874afCopy full SHA for d2874af
testing/matrix-sdk-integration-testing/src/tests/timeline.rs
@@ -873,6 +873,13 @@ async fn test_new_users_first_messages_dont_warn_about_insecure_device_if_it_is_
873
// But when alice becomes cross-signed and bob finds out about it
874
cross_sign(&alice).await;
875
bob.sync_once(SyncSettings::new()).await.expect("should not fail to sync");
876
+
877
+ // Sync again to make sure the server has notified us about the update to
878
+ // alice's device info.
879
+ bob.sync_once(SyncSettings::new().timeout(Duration::from_millis(2000)))
880
+ .await
881
+ .expect("should not fail to sync");
882
883
fetch_user_identity(&bob, alice.user_id()).await;
884
let update2 = assert_next_with_timeout!(timeline_stream);
885
0 commit comments