Skip to content

Commit

Permalink
Flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-barraza committed Dec 15, 2023
1 parent 521b252 commit b034d16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pay-api/tests/unit/api/test_non_sufficient_funds.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ def test_get_non_sufficient_funds(session, client, jwt, app):
invoice = factory_invoice(
payment_account=payment_account, status_code=InvoiceStatus.SETTLEMENT_SCHEDULED.value, paid=0, total=0)
invoice.save()

fee_schedule = FeeScheduleModel.find_by_filing_type_and_corp_type('CP', 'OTANN')
line_item = factory_payment_line_item(invoice_id=invoice.id, fee_schedule_id=fee_schedule.fee_schedule_id,
description='NSF', total=30)
line_item.save()

invoice_reference = factory_invoice_reference(invoice_id=invoice.id, invoice_number=invoice_number)
invoice_reference.save()
non_sufficient_funds = factory_non_sufficient_funds(invoice_id=invoice.id, description='NSF')
Expand Down

0 comments on commit b034d16

Please sign in to comment.