Skip to content

Commit

Permalink
fix test data
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Dec 4, 2024
1 parent 3d4b1fb commit 623ff1c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cairo_zero/tests/src/kakarot/precompiles/test_precompiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,12 @@ def test__is_precompile_rollup_precompiles(self, cairo_run, address):
assert result == (address in ROLLUP_PRECOMPILES)

@pytest.mark.parametrize(
"address", range(KAKAROT_PRECOMPILES[0], KAKAROT_PRECOMPILES[-1] + 2)
"address",
[
KAKAROT_PRECOMPILES[0] - 1,
*KAKAROT_PRECOMPILES,
KAKAROT_PRECOMPILES[-1] + 1,
],
)
def test__is_precompile_kakarot_precompiles(self, cairo_run, address):
result = cairo_run("test__is_precompile", address=address)
Expand Down

0 comments on commit 623ff1c

Please sign in to comment.