Skip to content

Commit c7b3dc8

Browse files
committed
tidy
1 parent b58aee6 commit c7b3dc8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

backend/tests/test_fhir_service.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,10 @@ def setUp(self):
191191
self.imms_repo = create_autospec(ImmunizationRepository)
192192
self.validator = create_autospec(ImmunizationValidator)
193193
self.fhir_service = FhirService(self.imms_repo, self.validator)
194+
self.logger_info_patcher = patch("logging.Logger.info")
195+
self.mock_logger_info = self.logger_info_patcher.start()
196+
def tearDown(self):
197+
patch.stopall()
194198

195199
def test_get_immunization_by_id(self):
196200
"""it should find an Immunization by id"""

0 commit comments

Comments
 (0)