@@ -16,7 +16,6 @@ class DefaultValues:
1616 imms_id = "test_imms_id"
1717 operation_requested = "CREATE"
1818 created_at_formatted_string = "20211120T12000000"
19- batch_start_time = fixed_datetime_str
2019 operation_start_time = fixed_datetime_str
2120 operation_end_time = fixed_datetime_str
2221
@@ -96,7 +95,6 @@ def __init__(
9695 local_id : str = DefaultValues .local_id ,
9796 imms_id : str = DefaultValues .imms_id ,
9897 created_at_formatted_string : str = DefaultValues .created_at_formatted_string ,
99- batch_start_time : str = DefaultValues .batch_start_time ,
10098 operation_start_time : str = DefaultValues .operation_start_time ,
10199 operation_end_time : str = DefaultValues .operation_end_time ,
102100 ):
@@ -117,7 +115,6 @@ def __init__(
117115 self .local_id = local_id
118116 self .imms_id = imms_id
119117 self .created_at_formatted_string = created_at_formatted_string
120- self .batch_start_time = batch_start_time
121118 self .operation_start_time = operation_start_time
122119 self .operation_end_time = operation_end_time
123120
@@ -128,7 +125,6 @@ def __init__(
128125 "supplier" : self .supplier ,
129126 "vaccine_type" : self .vaccine_type ,
130127 "created_at_formatted_string" : self .created_at_formatted_string ,
131- "batch_start_time" : self .batch_start_time ,
132128 "operation_start_time" : self .operation_start_time ,
133129 "operation_end_time" : self .operation_end_time ,
134130 "row_id" : self .row_id ,
@@ -166,7 +162,6 @@ class ValidValues:
166162 mock_message_expected_log_value = {
167163 "function_name" : "ack_processor_convert_message_to_ack_row" ,
168164 "date_time" : fixed_datetime .strftime ("%Y-%m-%d %H:%M:%S" ),
169- "batch_start_time" : MOCK_MESSAGE_DETAILS .batch_start_time ,
170165 "operation_start_time" : MOCK_MESSAGE_DETAILS .operation_start_time ,
171166 "operation_end_time" : MOCK_MESSAGE_DETAILS .operation_end_time ,
172167 "status" : "success" ,
@@ -260,7 +255,6 @@ class InvalidValues:
260255 Logging_with_no_values = {
261256 "function_name" : "ack_processor_convert_message_to_ack_row" ,
262257 "date_time" : fixed_datetime .strftime ("%Y-%m-%d %H:%M:%S" ),
263- "batch_start_time" : "unknown" ,
264258 "operation_start_time" : "unknown" ,
265259 "operation_end_time" : "unknown" ,
266260 "status" : "fail" ,
0 commit comments