Fix functional tests

This commit is contained in:
Rebecca Law
2016-11-16 16:15:30 +00:00
parent 80f3bfcb2c
commit 247668202b
2 changed files with 14 additions and 13 deletions

View File

@@ -142,7 +142,7 @@ def send_sms(self,
)
provider_tasks.deliver_sms.apply_async(
[saved_notification.id],
[str(saved_notification.id)],
queue='send-sms' if not service.research_mode else 'research-mode'
)
@@ -195,7 +195,7 @@ def send_email(self, service_id,
)
provider_tasks.deliver_email.apply_async(
[saved_notification.id],
[str(saved_notification.id)],
queue='send-email' if not service.research_mode else 'research-mode'
)