[test] Fixed physician test cases (#11347)

diff --git a/erpnext/healthcare/doctype/physician/test_physician.py b/erpnext/healthcare/doctype/physician/test_physician.py
index e57bdae..4bd497a 100644
--- a/erpnext/healthcare/doctype/physician/test_physician.py
+++ b/erpnext/healthcare/doctype/physician/test_physician.py
@@ -15,7 +15,7 @@
 	def test_schedule_and_time(self):
 		physician = frappe.new_doc('Physician')
 		physician.first_name = '_Testdoctor2'
-		physician.physician_schedule = '_Test Testdoctor Schedule'
+		physician.physician_schedule = '_Testdoctor2 Schedule'
 
 		self.assertRaises(frappe.ValidationError, physician.insert)
 
@@ -24,7 +24,7 @@
 
 		self.assertRaises(frappe.ValidationError, physician.insert)
 
-		physician.physician_schedule = '_Test Testdoctor Schedule'
+		physician.physician_schedule = '_Testdoctor2 Schedule'
 		physician.time_per_appointment = 15
 
 		physician.insert()
diff --git a/erpnext/healthcare/doctype/physician_schedule/test_records.json b/erpnext/healthcare/doctype/physician_schedule/test_records.json
new file mode 100644
index 0000000..1e6230d
--- /dev/null
+++ b/erpnext/healthcare/doctype/physician_schedule/test_records.json
@@ -0,0 +1,8 @@
+[
+	{
+	"schedule_name": "_Testdoctor1 Schedule"
+	},
+	{
+	"schedule_name": "_Testdoctor2 Schedule"
+	}
+]
\ No newline at end of file