Skip to content

Commit

Permalink
fix test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Jan 7, 2025
1 parent 4176b55 commit 17e6c67
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/test_fixtures.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pytest

from halmos.__main__ import mk_solver
from halmos.calldata import FunctionInfo
from halmos.config import default_config
from halmos.sevm import SEVM

Expand All @@ -11,8 +12,13 @@ def args():


@pytest.fixture
def sevm(args):
return SEVM(args, None)
def fun_info():
return FunctionInfo("test", "test()", "f8a8fd6d")


@pytest.fixture
def sevm(args, fun_info):
return SEVM(args, fun_info)


@pytest.fixture
Expand Down

0 comments on commit 17e6c67

Please sign in to comment.