Skip to content

Commit d9c994d

Browse files
authored
Merge pull request #194 from algorandfoundation/fix/access-list-tweaks
chore: adjust tests to support 4.3.0 go algorand access lists related changes
2 parents 3d6fd62 + be32a9b commit d9c994d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/transactions/test_resource_packing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def external_client(self, algorand: AlgorandClient, funded_account: SigningAccou
6565

6666
def test_accounts_address_balance_invalid_ref(self, algorand: AlgorandClient) -> None:
6767
random_account = algorand.account.random()
68-
with pytest.raises(LogicError, match=f"invalid Account reference {random_account.address}"):
68+
with pytest.raises(LogicError, match=f"unavailable Account {random_account.address}"):
6969
self.app_client.send.call(
7070
AppClientMethodCallParams(
7171
method="addressBalance",
@@ -192,7 +192,7 @@ def test_cross_product_reference_external_local(
192192
def test_address_balance_invalid_account_reference(
193193
self,
194194
) -> None:
195-
with pytest.raises(LogicError, match="invalid Account reference"):
195+
with pytest.raises(LogicError, match="unavailable Account"):
196196
self.app_client.send.call(
197197
AppClientMethodCallParams(
198198
method="addressBalance",

0 commit comments

Comments
 (0)