From 1f97f71de1cb39782cb4b92b0be5172b6d6a34f9 Mon Sep 17 00:00:00 2001 From: Kegan Dougal <7190048+kegsay@users.noreply.github.com> Date: Tue, 9 Jul 2024 15:59:18 +0100 Subject: [PATCH] Increase wait time to account for fed delays --- tests/federation_connectivity_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/federation_connectivity_test.go b/tests/federation_connectivity_test.go index 37a7ca7..aaf4efc 100644 --- a/tests/federation_connectivity_test.go +++ b/tests/federation_connectivity_test.go @@ -79,7 +79,7 @@ func TestNewUserCannotGetKeysForOfflineServer(t *testing.T) { waiter = bob.WaitUntilEventInRoom(t, roomID, api.CheckEventHasBody(wantMsgBody)) evID = charlie.SendMessage(t, roomID, wantMsgBody) t.Logf("bob (%s) waiting for event %s", bob.Type(), evID) - waiter.Waitf(t, 5*time.Second, "bob did not see charlie's message '%s'", wantMsgBody) + waiter.Waitf(t, 7*time.Second, "bob did not see charlie's message '%s'", wantMsgBody) // make sure bob cannot decrypt the msg from when his server was offline // TODO: this isn't ideal, see https://github.com/matrix-org/matrix-rust-sdk/issues/2864