This commit is contained in:
alexjanousekGSA
2025-08-14 09:52:49 -04:00
parent 9a58e21c4c
commit 518466dcd2
6 changed files with 56 additions and 22 deletions

View File

@@ -1,4 +1,3 @@
import pytest
from unittest.mock import patch
from app.main.views.notifications import (

View File

@@ -239,7 +239,10 @@ def test_all_activity_filters(client_request, mocker, filter_type, expected_limi
if expected_limit_days:
mock_get_page_of_jobs.assert_any_call(
SERVICE_ONE_ID, page=current_page, limit_days=expected_limit_days, use_processing_time=True
SERVICE_ONE_ID,
page=current_page,
limit_days=expected_limit_days,
use_processing_time=True,
)
else:
mock_get_page_of_jobs.assert_any_call(SERVICE_ONE_ID, page=current_page)