fix: test case

This commit is contained in:
Anupam 2021-08-06 14:02:57 +05:30
parent 01a0585ba0
commit 59c971015a

View File

@ -77,7 +77,7 @@ def make_lead(**args):
lead_doc = frappe.get_doc({
"doctype": "Lead",
"first_name": args.first_name or "Test",
"first_name": args.first_name or "_Test",
"last_name": args.last_name or "Lead",
"email_id": args.email_id or "new_lead_{}@example.com".format(random_string(5)),
}).insert()