fix(test): do not use is_group enabled customer group in test

(cherry picked from commit 75fa2b2277)
This commit is contained in:
khushi8112
2026-03-31 15:29:22 +05:30
committed by Mergify
parent 04cced2fb5
commit 8674aafc86
4 changed files with 5 additions and 5 deletions

View File

@@ -177,7 +177,7 @@ def create_shipment_customer(customer_name):
customer = frappe.new_doc("Customer")
customer.customer_name = customer_name
customer.customer_type = "Company"
customer.customer_group = "All Customer Groups"
customer.customer_group = "Individual"
customer.territory = "All Territories"
customer.insert()
return customer