Skip to content

Commit b6a48de

Browse files
committed
test: removing unnecessary assert that fails because of how patch works
1 parent 39b6b56 commit b6a48de

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

backend/ops_api/tests/ops/utils/test_reporting_counts.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
Portfolio,
1818
ResearchProject,
1919
)
20-
from models.utils.fiscal_year import get_current_fiscal_year
2120
from ops_api.ops.utils.reporting_summary import get_reporting_counts
2221

2322

@@ -309,7 +308,7 @@ def db_with_2024_data(app, loaded_db, app_ctx):
309308
def test_get_reporting_counts_with_mocked_fy_2024(mock_fy, app, db_with_2024_data, app_ctx):
310309
"""Test get_reporting_counts with mocked get_current_fiscal_year returning 2024."""
311310
# Verify the mock is working
312-
assert get_current_fiscal_year() == 2024
311+
# assert get_current_fiscal_year() == 2024
313312

314313
# Get reporting counts for FY 2024
315314
result = get_reporting_counts(app.db_session, 2024)

0 commit comments

Comments
 (0)