From b7099ebb3c043c2a2a5ed5ab7b3e85ef07a78dee Mon Sep 17 00:00:00 2001 From: Imdad Ahad Date: Thu, 19 Jan 2017 15:41:09 +0000 Subject: [PATCH] Modify stub providers with default values for consistency --- tests/app/main/views/test_providers.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/app/main/views/test_providers.py b/tests/app/main/views/test_providers.py index ae8d4a0fb..6c71fb9cd 100644 --- a/tests/app/main/views/test_providers.py +++ b/tests/app/main/views/test_providers.py @@ -33,7 +33,8 @@ stub_providers = { 'priority': 1, 'display_name': 'first_email_provider', 'identifier': 'first_email', - 'notification_type': 'email' + 'notification_type': 'email', + 'updated_at': None }, { 'active': True, @@ -42,6 +43,7 @@ stub_providers = { 'identifier': 'second_email', 'id': '0bd529cd-a0fd-43e5-80ee-b95ef6b0d51b', 'notification_type': 'email', + 'updated_at': None } ] } @@ -54,7 +56,8 @@ stub_provider = { 'priority': 1, 'display_name': 'first_sms_provider', 'identifier': 'first_sms', - 'notification_type': 'sms' + 'notification_type': 'sms', + 'updated_at': None } }