Skip to content

Commit 0053ec1

Browse files
authored
Update tests/prague/eip7002_el_triggerable_withdrawals/test_modified_withdrawal_contract.py
1 parent 85ac1ff commit 0053ec1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/prague/eip7002_el_triggerable_withdrawals/test_modified_withdrawal_contract.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,10 @@ def test_extra_withdrawals_pseudo_contract(
169169
for withdrawal_request in requests_list:
170170
# update memory_offset with the correct value
171171
withdrawal_request_bytes_amount: int = len(bytes(withdrawal_request))
172-
assert withdrawal_request_bytes_amount == 76, f"Expected withdrawal request to be of size 76 but got size {withdrawal_request_bytes_amount}" # noqa: E501
172+
assert withdrawal_request_bytes_amount == 76, (
173+
"Expected withdrawal request to be of size 76 but got size "
174+
f"{withdrawal_request_bytes_amount}"
175+
)
173176
memory_offset += withdrawal_request_bytes_amount
174177

175178
# TODO: in opcodes.py the argument order and names of arguments are different from those

0 commit comments

Comments
 (0)