tests: try bumping the timeout duration in `test_room_notification_count`

The test has been failing with a timeout recently, several time. Let's see if it was a fluke caused by the low threshold (because the server might be
busy handling other requests from other tests), or an actual issue.
This commit is contained in:
Benjamin Bouvier 2024-03-21 18:31:06 +01:00
parent 82bcf48c88
commit bd33c336e7
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ async fn test_room_notification_count() -> Result<()> {
assert_eq!(alice_room.num_unread_mentions(), 0);
// Remote echo for our own message.
assert!(timeout(Duration::from_secs(3), room_info_updates.next())
assert!(timeout(Duration::from_secs(10), room_info_updates.next())
.await
.expect("timeout getting room info update #6")
.is_some());