Skip to content

Commit 2265a98

Browse files
committed
make the linter happy
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
1 parent 5d18075 commit 2265a98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/zkevm/test_worst_compute.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def test_worst_modexp(
235235

236236
@pytest.mark.valid_from("Cancun")
237237
@pytest.mark.parametrize(
238-
"precompile_address,input",
238+
"precompile_address,parameters",
239239
[
240240
pytest.param(
241241
0x01,
@@ -370,12 +370,12 @@ def test_worst_precompile_fixed_cost(
370370
pre: Alloc,
371371
fork: Fork,
372372
precompile_address: Address,
373-
input: list[str],
373+
parameters: list[str],
374374
):
375375
"""Test running a block filled with a precompile with fixed cost."""
376376
env = Environment()
377377

378-
concatenated_hex_string = "".join(input)
378+
concatenated_hex_string = "".join(parameters)
379379
concatenated_bytes = bytes.fromhex(concatenated_hex_string)
380380

381381
padding_length = (32 - (len(concatenated_bytes) % 32)) % 32

0 commit comments

Comments
 (0)