Skip to content

Commit 99f249d

Browse files
committed
feedback
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
1 parent 66f10dc commit 99f249d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/zkevm/test_worst_compute.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def test_worst_keccak(
110110
@pytest.mark.parametrize(
111111
"gas_limit",
112112
[
113-
36_000_000,
113+
Environment().gas_limit,
114114
],
115115
)
116116
def test_worst_modexp(
@@ -156,7 +156,7 @@ def test_worst_modexp(
156156
# Must never happen, but keep it as a sanity check.
157157
raise ValueError(f"Code size {len(code)} exceeds maximum code size {MAX_CODE_SIZE}")
158158

159-
code_address = pre.deploy_contract(code=bytes(code))
159+
code_address = pre.deploy_contract(code=code)
160160

161161
tx = Transaction(
162162
to=code_address,

0 commit comments

Comments
 (0)