Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed May 30, 2022
1 parent 1d02996 commit 769a4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/codegen/test_abi_decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ def abi_decode(x: Bytes[64]) -> (uint256, uint256):

arg1 = 123
arg2 = 456
assert c.abi_decode(abi_encode("(uint256,uint256)", (arg1, arg2))) == (123, 456)
assert tuple(c.abi_decode(abi_encode("(uint256,uint256)", (arg1, arg2)))) == (123, 456)

0 comments on commit 769a4b7

Please sign in to comment.