Skip to content

Commit

Permalink
Merge pull request ethereum#1008 from ethereum/fix-test-cover-revert
Browse files Browse the repository at this point in the history
fix(tests): Fix `test_all_opcodes.py`
  • Loading branch information
winsvega authored Dec 9, 2024
2 parents 3cd05e0 + dd68e6b commit dc05b42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/frontier/opcodes/test_all_opcodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ def test_cover_revert(state_test: StateTestFiller, pre: Alloc):
tx = Transaction(
sender=pre.fund_eoa(),
gas_limit=1_000_000,
data=Op.SSTORE(1, 1) + Op.REVERT,
to=b"",
data=Op.SSTORE(1, 1) + Op.REVERT(0, 0),
to=None,
value=0,
protected=False,
)
Expand Down

0 comments on commit dc05b42

Please sign in to comment.