Skip to content

Commit

Permalink
fix(test): incorrect field for customer default billing currency
Browse files Browse the repository at this point in the history
  • Loading branch information
ruthra-kumar committed Jun 18, 2024
1 parent 7e318c0 commit c696d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/accounts/doctype/subscription/test_subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit c696d13

Please sign in to comment.