We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b58aee6 commit c7b3dc8Copy full SHA for c7b3dc8
backend/tests/test_fhir_service.py
@@ -191,6 +191,10 @@ def setUp(self):
191
self.imms_repo = create_autospec(ImmunizationRepository)
192
self.validator = create_autospec(ImmunizationValidator)
193
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()
198
199
def test_get_immunization_by_id(self):
200
"""it should find an Immunization by id"""
0 commit comments