fix: update the testcase format

(cherry picked from commit 29d50b770e)
This commit is contained in:
Nihantra Patel
2024-07-18 12:24:52 +05:30
committed by Mergify
parent f547befeb9
commit 549dc286d0

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")