Skip to content

Commit

Permalink
Fixed error in test_SS.py test_euler_equation_solver() tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rickecon committed Sep 7, 2024
1 parent cd728f5 commit eb14ed1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_SS.py
Original file line number Diff line number Diff line change
Expand Up @@ -981,8 +981,8 @@ def test_inner_loop_extra(baseline, param_updates, filename, dask_client):
def test_euler_equation_solver(input_tuple, ubi_j, p, expected):
# Test SS.inner_loop function. Provide inputs to function and
# ensure that output returned matches what it has been before.
guesses, r, w, bq, tr, _, factor, j = input_tuple
args = (r, w, 1.0, bq, tr, ubi_j, factor, j, p)
guesses, r, w, bq, rm, tr, _, factor, j = input_tuple
args = (r, w, 1.0, bq, rm, tr, ubi_j, factor, j, p)
test_list = SS.euler_equation_solver(guesses, *args)
print(repr(test_list))

Expand Down
Binary file modified tests/test_io_data/euler_eqn_solver_inputs.pkl
Binary file not shown.

0 comments on commit eb14ed1

Please sign in to comment.