Add test for when there are no notifications on a certificate (#757)

This commit is contained in:
Michael Treacher
2017-04-25 02:04:49 +10:00
committed by kevgliss
parent f90076abe9
commit 1c295896e6
2 changed files with 13 additions and 4 deletions

View File

@ -131,10 +131,10 @@ def send_expiration_notifications(exclude):
else:
failure += 1
if send_notification('expiration', security_data, security_email, notification):
success += 1
else:
failure += 1
if send_notification('expiration', security_data, security_email, notification):
success += 1
else:
failure += 1
return success, failure