fix(test): incorrect field for customer default billing currency

This commit is contained in:
ruthra kumar
2024-06-18 14:35:35 +05:30
parent 7e318c0132
commit c696d13a5e

View File

@@ -565,7 +565,7 @@ def create_parties():
if not frappe.db.exists("Customer", "_Test Subscription Customer"):
customer = frappe.new_doc("Customer")
customer.customer_name = "_Test Subscription Customer"
customer.billing_currency = "USD"
customer.default_currency = "USD"
customer.append("accounts", {"company": "_Test Company", "account": "_Test Receivable USD - _TC"})
customer.insert()