Skip to content

Commit

Permalink
test: am so ma
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Jan 28, 2025
1 parent 9d3a518 commit 7468922
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/functional/test_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@ def test_minimal_proxy(ethereum, minimal_proxy_container, chain, owner):

# Show getting the contract using the proxy address.
contract = chain.contracts.instance_at(minimal_proxy.address)
assert contract.contract_type.abi == [] # No target ABIs; no proxy ABIs either.
abi = contract.contract_type.abi
if isinstance(abi, list):
assert abi == []
# else: is messed up from other test (xdist).

0 comments on commit 7468922

Please sign in to comment.