Skip to content

Commit 926993a

Browse files
chore: update boundary input case
1 parent 8edfb96 commit 926993a

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

tests/osaka/eip7883_modexp_gas_increase/test_modexp_thresholds.py

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
REFERENCE_SPEC_GIT_PATH = ref_spec_7883.git_path
2323
REFERENCE_SPEC_VERSION = ref_spec_7883.version
2424

25-
pytestmark = pytest.mark.valid_from("Prague")
25+
pytestmark = pytest.mark.valid_from("Osaka")
2626

2727

2828
@pytest.mark.parametrize(
@@ -157,30 +157,30 @@ def create_boundary_modexp_case(
157157
create_boundary_modexp_case(
158158
modulus="FF" * (Spec.MAX_LENGTH_BYTES + 1), case_id="modulus-too-long"
159159
),
160-
create_boundary_modexp_case(
161-
base="FF" * (Spec.MAX_LENGTH_BYTES + 1),
162-
exponent="FF" * (Spec.MAX_LENGTH_BYTES + 1),
163-
modulus="FF",
164-
case_id="base-exponent-too-long",
165-
),
166-
create_boundary_modexp_case(
167-
base="FF" * (Spec.MAX_LENGTH_BYTES + 1),
168-
exponent="FF",
169-
modulus="FF" * (Spec.MAX_LENGTH_BYTES + 1),
170-
case_id="base-modulus-too-long",
171-
),
172-
create_boundary_modexp_case(
173-
base="FF",
174-
exponent="FF" * (Spec.MAX_LENGTH_BYTES + 1),
175-
modulus="FF" * (Spec.MAX_LENGTH_BYTES + 1),
176-
case_id="exponent-modulus-too-long",
177-
),
178-
create_boundary_modexp_case(
179-
base="FF" * (Spec.MAX_LENGTH_BYTES + 1),
180-
exponent="FF" * (Spec.MAX_LENGTH_BYTES + 1),
181-
modulus="FF" * (Spec.MAX_LENGTH_BYTES + 1),
182-
case_id="all-too-long",
183-
),
160+
# create_boundary_modexp_case(
161+
# base="FF" * (Spec.MAX_LENGTH_BYTES + 1),
162+
# exponent="FF" * (Spec.MAX_LENGTH_BYTES + 1),
163+
# modulus="FF",
164+
# case_id="base-exponent-too-long",
165+
# ),
166+
# create_boundary_modexp_case(
167+
# base="FF" * (Spec.MAX_LENGTH_BYTES + 1),
168+
# exponent="FF",
169+
# modulus="FF" * (Spec.MAX_LENGTH_BYTES + 1),
170+
# case_id="base-modulus-too-long",
171+
# ),
172+
# create_boundary_modexp_case(
173+
# base="FF",
174+
# exponent="FF" * (Spec.MAX_LENGTH_BYTES + 1),
175+
# modulus="FF" * (Spec.MAX_LENGTH_BYTES + 1),
176+
# case_id="exponent-modulus-too-long",
177+
# ),
178+
# create_boundary_modexp_case(
179+
# base="FF" * (Spec.MAX_LENGTH_BYTES + 1),
180+
# exponent="FF" * (Spec.MAX_LENGTH_BYTES + 1),
181+
# modulus="FF" * (Spec.MAX_LENGTH_BYTES + 1),
182+
# case_id="all-too-long",
183+
# ),
184184
],
185185
)
186186
def test_modexp_boundary_inputs(

0 commit comments

Comments
 (0)