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 57a5b6b commit 86ecc71Copy full SHA for 86ecc71
backend/tests/test_update_imms.py
@@ -11,9 +11,7 @@
11
class TestUpdateImmunizations(unittest.TestCase):
12
def setUp(self):
13
self.controller = create_autospec(FhirController)
14
- # patch FhirController
15
- self.controller = create_autospec(FhirController)
16
- self.controller.update_immunization = FhirController.update_immunization
+ # self.controller.update_immunization = FhirController.update_immunization
17
self.logger_exception_patcher = patch("logging.Logger.exception")
18
self.mock_logger_exception = self.logger_exception_patcher.start()
19
self.logger_info_patcher = patch("logging.Logger.info")
0 commit comments