Don't send email notification when 0 uploads were attempted (#1058)

* Don't send email notification when 0 uploads were attempted
This commit is contained in:
Ben McIlwain
2021-04-06 18:17:57 -04:00
committed by GitHub
parent 06b0887c51
commit e31f0cb9ba
2 changed files with 10 additions and 10 deletions
@@ -210,13 +210,7 @@ class IcannReportingUploadActionTest {
action.run();
tm().clearSessionCache();
verifyNoMoreInteractions(mockReporter);
verify(emailService)
.sendEmail(
EmailMessage.create(
"ICANN Monthly report upload summary: 0/0 succeeded",
"Report Filename - Upload status:\n",
new InternetAddress("recipient@example.com"),
new InternetAddress("sender@example.com")));
verifyNoMoreInteractions(emailService);
}
@TestOfyAndSql