Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

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 cc9702b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ 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 cc9702b

Please sign in to comment.