Remove the unused destination property from IncomingMessage

This commit is contained in:
Jon Chambers
2022-07-27 14:02:59 -04:00
committed by Jon Chambers
parent 3d875f1ce5
commit e28f1e8ceb
4 changed files with 8 additions and 8 deletions

View File

@@ -1551,8 +1551,8 @@ class AccountControllerTest {
new StoredVerificationCode(code, System.currentTimeMillis(), "push", null)));
var deviceMessages = List.of(
new IncomingMessage(1, null, 2, 2, "content2"),
new IncomingMessage(1, null, 3, 3, "content3"));
new IncomingMessage(1, 2, 2, "content2"),
new IncomingMessage(1, 3, 3, "content3"));
var deviceKeys = Map.of(1L, new SignedPreKey(), 2L, new SignedPreKey(), 3L, new SignedPreKey());
final Map<Long, Integer> registrationIds = Map.of(1L, 17, 2L, 47, 3L, 89);