code review feedback

This commit is contained in:
Kenneth Kehl
2024-08-08 10:57:37 -07:00
parent 3de8a27a1a
commit 034684bbb0
2 changed files with 12 additions and 4 deletions

View File

@@ -1137,5 +1137,14 @@ def test_report_all_users(admin_request, mocker):
_expected_status=200,
)
assert response == {
"data": '[{"name": "name", "email_address": "email", "mobile_number": "phone", "service": "service"}]'
"data": [
{
"name": "name",
"email_address": "email",
"mobile_number": "phone",
"service": "service",
}
],
"mime_type": "application/json",
"status": 200,
}