Skip to content

Commit

Permalink
formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
jazwu committed Apr 14, 2024
1 parent 6c554d4 commit 12d3fe6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion healthScore/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,9 @@ def test_get_doctor_details(self):
doctor_user = User.objects.create_healthcare_worker(
email="doctor@test.com", password="12345"
)
doctor = HospitalStaff.objects.create(id=1, userID=doctor_user.id, hospitalID=self.hospital)
doctor = HospitalStaff.objects.create(
id=1, userID=doctor_user.id, hospitalID=self.hospital
)
response = self.client.get(reverse("get_doctor_details", args=[doctor.id]))
self.assertEqual(response.status_code, 200)
self.assertEqual(
Expand Down

0 comments on commit 12d3fe6

Please sign in to comment.