Skip to content

Commit afc7f13

Browse files
committed
lints
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
1 parent 1e6cade commit afc7f13

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

tests/zkevm/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
"""
2-
abstract: Tests for zkVMs
3-
"""
1+
"""abstract: Tests for zkVMs"""

tests/zkevm/test_worst_bytecode.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
"""
2+
abstract: Tests for zkEVMs
3+
Tests for zkEVMs.
4+
5+
Tests for zkEVMs worst-cases scenarios.
6+
"""
7+
18
import pytest
29

310
from ethereum_test_forks import Fork
4-
from ethereum_test_tools import (Alloc, Block, BlockchainTestFiller,
5-
Environment, Transaction)
11+
from ethereum_test_tools import Alloc, Block, BlockchainTestFiller, Environment, Transaction
612
from ethereum_test_tools.vm.opcode import Opcodes as Op
713

814
REFERENCE_SPEC_GIT_PATH = "TODO"
@@ -27,11 +33,9 @@ def test_worst_bytecode(
2733
blockchain_test: BlockchainTestFiller,
2834
pre: Alloc,
2935
fork: Fork,
30-
num_called_contracts : int,
36+
num_called_contracts: int,
3137
):
32-
"""
33-
Test a block execution calling contracts with the maximum size of bytecode.
34-
"""
38+
"""Test a block execution calling contracts with the maximum size of bytecode."""
3539
env = Environment(gas_limit=GAS_LIMIT)
3640

3741
contract_addrs = []

0 commit comments

Comments
 (0)