Skip to content

Commit

Permalink
fix(fw): tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Jun 4, 2024
1 parent 3b4e5b7 commit 6fb9305
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ethereum_test_tools/tests/test_filling/test_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ def hash(request: pytest.FixtureRequest, solc_version: Version):
"""
if solc_version == Version.parse("0.8.20"):
if request.node.funcargs["fork"] == Berlin:
return bytes.fromhex("193e550de3")
return bytes.fromhex("8abb1c1dd7")
elif request.node.funcargs["fork"] == London:
return bytes.fromhex("b053deac0e")
return bytes.fromhex("1dfe81256f")
else:
if request.node.funcargs["fork"] == Berlin:
return bytes.fromhex("d543e179bf")
return bytes.fromhex("d45f416ad5")
elif request.node.funcargs["fork"] == London:
return bytes.fromhex("f07a9350f0")
return bytes.fromhex("ccfc165586")


def test_check_helper_fixtures():
Expand Down

0 comments on commit 6fb9305

Please sign in to comment.