Skip to content

Commit

Permalink
- Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
elipe17 committed Nov 27, 2023
1 parent 1838bf8 commit 7ae9054
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions tdrs-backend/tdpservice/parsers/test/test_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -1008,12 +1008,10 @@ def test_parse_tribal_section_1_file(tribal_section_1_file, dfs):
dfs.case_aggregates = util.case_aggregates_by_month(
dfs.datafile, dfs.status)
assert dfs.case_aggregates == {'rejected': 0,
'months': [{'month': 'Oct', 'accepted_without_errors': 1,
'accepted_with_errors': 0},
{'month': 'Nov', 'accepted_without_errors': 0,
'accepted_with_errors': 0},
{'month': 'Dec', 'accepted_without_errors': 0,
'accepted_with_errors': 0}]}
'months': [{'month': 'Oct', 'accepted_without_errors': 1, 'accepted_with_errors': 0},
{'month': 'Nov', 'accepted_without_errors': 0, 'accepted_with_errors': 0},
{'month': 'Dec', 'accepted_without_errors': 0, 'accepted_with_errors': 0}
]}

assert Tribal_TANF_T1.objects.all().count() == 1
assert Tribal_TANF_T2.objects.all().count() == 1
Expand Down

0 comments on commit 7ae9054

Please sign in to comment.