Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SamDudley committed Mar 22, 2024
1 parent 90be419 commit d5ca279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion end_of_month/test/test_end_of_month_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def check_archive_period(self, tested_period):
for period in range(1, tested_period + 1):
# Check the full total. It is saved in a different table, for convenience
monthly_budget = MonthlyTotalBudget.objects.get(archived_period=period)
assert self.archived_figure[period], monthly_budget.amount)
assert self.archived_figure[period] == monthly_budget.amount
# Check that nothig has corrupted the archived figures
assert self.archived_figure[period] == self.get_period_budget_total(period)

Expand Down

0 comments on commit d5ca279

Please sign in to comment.