From fe30d2879a4a957abeacf88742c21d8b894b74b0 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Fri, 29 Mar 2019 15:46:36 +0000 Subject: [PATCH] Fix test --- tests/app/dao/test_fact_notification_status_dao.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/app/dao/test_fact_notification_status_dao.py b/tests/app/dao/test_fact_notification_status_dao.py index f0175504c..fecf8d696 100644 --- a/tests/app/dao/test_fact_notification_status_dao.py +++ b/tests/app/dao/test_fact_notification_status_dao.py @@ -538,11 +538,11 @@ def test_get_total_sent_notifications_for_day_and_type_returns_right_notificatio notification_type, count, sample_template, sample_email_template, sample_letter_template ): create_ft_notification_status(bst_date="2019-03-27", service=sample_template.service, template=sample_template, - count=count) + count=3) create_ft_notification_status(bst_date="2019-03-27", service=sample_email_template.service, - template=sample_email_template, count=count) + template=sample_email_template, count=5) create_ft_notification_status(bst_date="2019-03-27", service=sample_letter_template.service, - template=sample_letter_template, count=count) + template=sample_letter_template, count=7) result = get_total_sent_notifications_for_day_and_type(day='2019-03-27', notification_type=notification_type)