change test file name

This commit is contained in:
Kenneth Kehl
2024-10-24 09:39:54 -07:00
parent a0b66f4284
commit 3d63ccc415

View File

@@ -56,7 +56,8 @@ def test_get_paginated_uploads(mocker):
MagicMock(status="delivered", count=60),
]
mock_pagination_links.return_value = {"self": "/uploads?page=1"}
result = get_paginated_uploads("service_id_123", limit_days=7, page=1)
# result =
get_paginated_uploads("service_id_123", limit_days=7, page=1)
mock_dao_get_uploads.assert_called_once_with(
"service_id_123", limit_days=7, page=1, page_size=10
)