Skip to content

Commit

Permalink
fix another nit
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Apr 4, 2024
1 parent 2771970 commit af0e811
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/functional/builtins/codegen/test_extract32.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ def test_extract32_extraction(tx_failed, get_contract_with_gas_estimation, locat
)
if location == "storage":
decl = "y: Bytes[100]"
else:
elif location == "transient":
decl = "y: transient(Bytes[100])"
else:
raise Exception("unreachable")
extract32_code = f"""
{decl}
@external
Expand Down

0 comments on commit af0e811

Please sign in to comment.