Skip to content

Commit 40a5bcd

Browse files
committed
v1.5.0: Update property name
1 parent 752f31f commit 40a5bcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

safe_transaction_service/history/tests/test_safe_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)