chore: fix linter

This commit is contained in:
Gursheen Anand
2024-02-26 17:46:32 +05:30
parent ff0a109a13
commit ce4f4ff54a

View File

@@ -53,12 +53,10 @@ class TestPaymentOrder(FrappeTestCase):
def create_payment_order_against_payment_entry(ref_doc, order_type, bank_account):
payment_order = frappe.get_doc(
dict(
doctype="Payment Order",
company="_Test Company",
payment_order_type=order_type,
company_bank_account=bank_account,
)
doctype="Payment Order",
company="_Test Company",
payment_order_type=order_type,
company_bank_account=bank_account,
)
doc = make_payment_order(ref_doc.name, payment_order)
doc.save()