test: Set default currency for patient
diff --git a/erpnext/healthcare/doctype/patient_appointment/test_patient_appointment.py b/erpnext/healthcare/doctype/patient_appointment/test_patient_appointment.py
index 9dd4a2c..b18c8ee 100644
--- a/erpnext/healthcare/doctype/patient_appointment/test_patient_appointment.py
+++ b/erpnext/healthcare/doctype/patient_appointment/test_patient_appointment.py
@@ -206,6 +206,7 @@
 		patient = frappe.new_doc('Patient')
 		patient.first_name = '_Test Patient'
 		patient.sex = 'Female'
+		patient.default_currency = 'INR'
 		patient.save(ignore_permissions=True)
 		patient = patient.name
 	return patient