Fix a counting bug with reported messages

This commit is contained in:
Jon Chambers
2021-11-23 17:28:39 -05:00
committed by GitHub
parent a42fe9bfb0
commit 6919354520
4 changed files with 58 additions and 11 deletions

View File

@@ -575,7 +575,7 @@ class MessageControllerTest {
assertThat(response.getStatus(), is(equalTo(202)));
verify(reportMessageManager).report(senderNumber, messageGuid);
verify(reportMessageManager).report(senderNumber, messageGuid, AuthHelper.VALID_UUID);
}
static Account mockAccountWithDeviceAndRegId(Object... deviceAndRegistrationIds) {