fix: update the testcase format

This commit is contained in:
Nihantra Patel
2024-07-18 12:24:52 +05:30
parent 2f63fae31d
commit 29d50b770e

View File

@@ -32,11 +32,13 @@ class TestProspect(unittest.TestCase):
frappe.delete_doc_if_exists("Customer", "_Test Prospect")
prospect = frappe.get_doc({
"doctype": "Prospect",
"company_name": "_Test Prospect",
"customer_group": "_Test Customer Group",
})
prospect = frappe.get_doc(
{
"doctype": "Prospect",
"company_name": "_Test Prospect",
"customer_group": "_Test Customer Group",
}
)
prospect.insert()
customer = make_customer_from_prospect("_Test Prospect")