We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51df7d2 commit 9131a48Copy full SHA for 9131a48
delta_backend/tests/test_convert_to_flat_json.py
@@ -71,12 +71,20 @@ def setUp(self):
71
},
72
],
73
)
74
+ self.logger_info_patcher = patch("logging.Logger.info")
75
+ self.mock_logger_info = self.logger_info_patcher.start()
76
77
+ self.logger_exception_patcher = patch("logging.Logger.exception")
78
+ self.mock_logger_exception = self.logger_exception_patcher.start()
79
+
80
def tearDown(self):
81
"""Tear down the mock DynamoDB table."""
- self.firehose_logger_patcher.stop()
82
self.table.delete()
83
self.dynamodb_resource = None
84
+ self.firehose_logger_patcher.stop()
85
+ self.logger_exception_patcher.stop()
86
+ self.logger_info_patcher.stop()
87
88
89
@staticmethod
90
def get_event(event_name="INSERT", operation="operation", supplier="EMIS"):
0 commit comments