From 743a9e2d7c0bfcee219c7f297b5663c87c0d9580 Mon Sep 17 00:00:00 2001 From: Marisa Hoenig Date: Tue, 27 Oct 2020 16:24:07 -0400 Subject: [PATCH] [#190] fix one more id_value to fix failing tests --- .../test_notification_dao_delete_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/dao/notification_dao/test_notification_dao_delete_notifications.py b/tests/app/dao/notification_dao/test_notification_dao_delete_notifications.py index 2233aaeaf6..074024970a 100644 --- a/tests/app/dao/notification_dao/test_notification_dao_delete_notifications.py +++ b/tests/app/dao/notification_dao/test_notification_dao_delete_notifications.py @@ -128,7 +128,7 @@ def test_should_delete_notification_and_recipient_identifiers_when_bulk_deleting for i in range(1, 11): past_date = '2016-0{0}-{1:02d} {1:02d}:00:00.000000'.format(month, i) with freeze_time(past_date): - recipient_identifier = {"id_type": VA_PROFILE_ID, "value": "foo"} + recipient_identifier = {"id_type": VA_PROFILE_ID, "id_value": "foo"} persist_notification( template_id=sample_job.template.id, template_version=sample_job.template.version,