File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
safe_transaction_service/history/tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ def test_get_safe_info_from_blockchain(self):
190190 safe_info .fallback_handler ,
191191 self .compatibility_fallback_handler_V1_5_0 .address ,
192192 )
193- self .assertEqual (safe_info .guard , NULL_ADDRESS )
193+ self .assertEqual (safe_info .transaction_guard , NULL_ADDRESS )
194194 self .assertEqual (
195195 safe_info .version , "1.5.0"
196196 ) # No SafeMasterCopy, so fallback to blockchain version
@@ -215,7 +215,7 @@ def test_get_safe_info_from_db(self):
215215
216216 safe_info = self .safe_service .get_safe_info_from_db (safe_address )
217217 self .assertIsInstance (safe_info , SafeInfo )
218- self .assertEqual (safe_info .guard , NULL_ADDRESS )
218+ self .assertEqual (safe_info .transaction_guard , NULL_ADDRESS )
219219 self .assertEqual (safe_info .version , None )
220220
221221 def test_decode_creation_data (self ):
You can’t perform that action at this time.
0 commit comments