Skip to content

Commit

Permalink
Adjust tests in test_process_model.py
Browse files Browse the repository at this point in the history
  • Loading branch information
timmens committed Feb 6, 2024
1 parent 0fabc75 commit b7c561c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/test_process_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,10 @@ def raw_func(health, wealth): # noqa: ARG001

raw_func._stochastic_info = StochasticInfo()

variable_info = pd.DataFrame({"is_state": [True, True]}, index=["health", "wealth"])
variable_info = pd.DataFrame(
{"is_discrete": [True, True]},
index=["health", "wealth"],
)

grids = {
"health": jnp.array([1, 4]),
Expand Down Expand Up @@ -245,7 +248,7 @@ def raw_func(health, wealth): # noqa: ARG001
raw_func._stochastic_info = StochasticInfo()

variable_info = pd.DataFrame(
{"is_state": [False, True]},
{"is_discrete": [False, True]},
index=["health", "wealth"],
)

Expand Down

0 comments on commit b7c561c

Please sign in to comment.