File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
safe_transaction_service/history/tests Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -224,12 +224,13 @@ def _test_process_decoded_internal_txs_task(self):
224
224
self .assertEqual (safe_status .threshold , threshold )
225
225
226
226
def test_process_decoded_internal_txs_task_together (self ):
227
- with self .assertLogs (logger = task_logger ) as cm :
228
- self ._test_process_decoded_internal_txs_task ()
229
- self .assertIn (
230
- "Start process decoded internal txs for every Safe together" ,
231
- cm .output [0 ],
232
- )
227
+ with self .settings (PROCESSING_ALL_SAFES_TOGETHER = True ):
228
+ with self .assertLogs (logger = task_logger ) as cm :
229
+ self ._test_process_decoded_internal_txs_task ()
230
+ self .assertIn (
231
+ "Start process decoded internal txs for every Safe together" ,
232
+ cm .output [0 ],
233
+ )
233
234
234
235
def test_process_decoded_internal_txs_task_different_tasks (self ):
235
236
with self .settings (PROCESSING_ALL_SAFES_TOGETHER = False ):
You can’t perform that action at this time.
0 commit comments