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

@@ -585,7 +585,7 @@ class MessageControllerTest {
.request()
.header(OptionalAccess.UNIDENTIFIED, Base64.getEncoder().encodeToString("1234".getBytes()))
.put(Entity.entity(new IncomingMessageList(
List.of(new IncomingMessage(1, null, 1L, 1, new String(contentBytes))), false,
List.of(new IncomingMessage(1, 1L, 1, new String(contentBytes))), false,
System.currentTimeMillis()),
MediaType.APPLICATION_JSON_TYPE));