Skip to content

Commit 9e44951

Browse files
committed
make the linter happy
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
1 parent 98cdccd commit 9e44951

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
@@ -236,7 +236,7 @@ def test_worst_modexp(
236236

237237
@pytest.mark.valid_from("Cancun")
238238
@pytest.mark.parametrize(
239-
"precompile_address,input",
239+
"precompile_address,parameters",
240240
[
241241
pytest.param(
242242
0x01,
@@ -371,12 +371,12 @@ def test_worst_precompile_fixed_cost(
371371
pre: Alloc,
372372
fork: Fork,
373373
precompile_address: Address,
374-
input: list[str],
374+
parameters: list[str],
375375
):
376376
"""Test running a block filled with a precompile with fixed cost."""
377377
env = Environment()
378378

379-
concatenated_hex_string = "".join(input)
379+
concatenated_hex_string = "".join(parameters)
380380
concatenated_bytes = bytes.fromhex(concatenated_hex_string)
381381

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

0 commit comments

Comments
 (0)