From 00e0f41d8537f5bf9ad749992fe8244cd611f58a Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Wed, 28 Aug 2024 17:07:51 -0400 Subject: [PATCH] Stuff was done. Signed-off-by: Cliff Hill --- tests/app/template_statistics/test_rest.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/app/template_statistics/test_rest.py b/tests/app/template_statistics/test_rest.py index 1ae65b22e..958a2df6c 100644 --- a/tests/app/template_statistics/test_rest.py +++ b/tests/app/template_statistics/test_rest.py @@ -79,6 +79,11 @@ def test_get_template_statistics_for_service_by_day_goes_to_db( template_name=sample_template.name, notification_type=sample_template.template_type, status=NotificationStatus.CREATED, + template_folder_id="123456", + folder="Some_Folder", + created_by_id="987654", + created_by="Mr. Nobody", + last_used="0/0/0", ) ], ) @@ -95,6 +100,11 @@ def test_get_template_statistics_for_service_by_day_goes_to_db( "template_name": sample_template.name, "template_type": sample_template.template_type, "status": NotificationStatus.CREATED, + "template_folder_id": "123456", + "template_folder": "Some_Folder", + "created_by_id": "987654", + "created_by": "Mr. Nobody", + "last_used": "0/0/0", } ] # dao only called for 2nd, since redis returned values for first call