fix: Test Fee Validity

This commit is contained in:
Jamsheer 2019-01-09 13:29:20 +05:30
parent c0ac849776
commit 319ca86c81

View File

@ -68,6 +68,7 @@ def create_appointment(patient, practitioner, appointment_date, department):
appointment.department = department
appointment.appointment_date = appointment_date
appointment.company = "_Test Company"
appointment.duration = 15
appointment.save(ignore_permissions=True)
return appointment