Skip to content

Commit 1bfe9cb

Browse files
committed
lints and cleanup
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
1 parent d8d2965 commit 1bfe9cb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/zkevm/test_worst_compute.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
import pytest
1111

1212
from ethereum_test_forks import Fork
13-
from ethereum_test_tools import Alloc, Block, BlockchainTestFiller, Environment, Transaction
13+
from ethereum_test_tools import (Alloc, Block, BlockchainTestFiller,
14+
Environment, Transaction)
1415
from ethereum_test_tools.vm.opcode import Opcodes as Op
1516

1617
REFERENCE_SPEC_GIT_PATH = "TODO"
@@ -126,7 +127,7 @@ def test_worst_modexp(
126127
exp_length = 32
127128

128129
base = 2 ** (8 * base_mod_length) - 1
129-
mod = 2 ** (8 * base_mod_length) - 2 # Prevnts base == mod
130+
mod = 2 ** (8 * base_mod_length) - 2 # Prevents base == mod
130131
exp = 2 ** (8 * exp_length) - 1
131132

132133
# MODEXP calldata

0 commit comments

Comments
 (0)