fix: compile error

This commit is contained in:
vran 2022-06-04 18:05:57 +08:00
parent 8948745321
commit 981ef97053
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class DocumentEventSubscriberTest extends BaseTest {
event.setNewVersion(2L);
event.setOldVersion(1L);
event.setProjectId(-1);
documentEventSubscriber.onDocumentUpdated(event);
documentEventSubscriber.sendMailOnUpdated(event);
verify(mailSender, times(1)).batchSendHtml(any(), any(), any(), any());
}