Skip to content

Commit

Permalink
add args
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed May 31, 2024
1 parent 5d3e170 commit db9d77f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_get_micro_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,9 @@ def test_taxcalc_advance():
expected_dict = utils.safe_read_pickle(
os.path.join(CUR_PATH, "test_io_data", "tax_dict_for_tests.pkl")
)
test_dict = get_micro_data.taxcalc_advance(2028, {}, {}, "cps", 2028)
test_dict = get_micro_data.taxcalc_advance(
2028, {}, {}, "cps", None, None, 2014, 2028
)
for k, v in test_dict.items():
assert np.allclose(expected_dict[k], v, equal_nan=True)

Expand Down

0 comments on commit db9d77f

Please sign in to comment.