Let integration tests mind the mailbox prop update when adding contact

This commit is contained in:
Daniel Lublin
2022-05-13 11:46:41 +02:00
parent a42d9eec1c
commit 84afc6d934
3 changed files with 21 additions and 14 deletions

View File

@@ -345,11 +345,12 @@ public class TransportKeyAgreementIntegrationTest
.canSendOutgoingStreams(aliceId, DUPLEX_TRANSPORT_ID));
}
// Sync initial client versioning updates
// Sync initial client versioning updates and mailbox properties updates
syncMessage(alice, bob, bobId, 1, true);
syncMessage(bob, alice, aliceId, 1, true);
syncMessage(alice, bob, bobId, 1, true);
sendAcks(bob, alice, aliceId, 1);
syncMessage(alice, bob, bobId, 2, true);
syncMessage(bob, alice, aliceId, 1, true);
sendAcks(alice, bob, bobId, 1);
return new Pair<>(aliceId, bobId);
}