Skip to content

Commit

Permalink
Update tests to reflect new exact argument of the CTC_new function
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholmer committed Jul 8, 2024
1 parent 3659464 commit 3779d50
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions taxcalc/tests/test_calcfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ def test_ChildDepTaxCredit_2022(test_tuple, expected_value, skip_jit):
CTC_new_refund_limit_payroll_rt = 0.0
CTC_new_refund_limited_all_payroll = False
payrolltax = 0
exact = 0
n24 = 0
nu06 = 0
age_head = 45
Expand All @@ -758,7 +759,7 @@ def test_ChildDepTaxCredit_2022(test_tuple, expected_value, skip_jit):
CTC_new_c, CTC_new_rt, CTC_new_c_under6_bonus,
CTC_new_ps, CTC_new_prt, CTC_new_for_all, CTC_include17,
CTC_new_refund_limited, CTC_new_refund_limit_payroll_rt,
CTC_new_refund_limited_all_payroll, payrolltax,
CTC_new_refund_limited_all_payroll, payrolltax, exact,
n24, nu06, age_head, age_spouse, nu18, c00100, MARS, ptax_oasdi,
c09200, ctc_new)
# output tuple is : (ctc_new)
Expand Down Expand Up @@ -786,6 +787,7 @@ def test_CTCnew_2021(test_tuple, expected_value, skip_jit):
CTC_new_refund_limit_payroll_rt = 0.0
CTC_new_refund_limited_all_payroll = False
payrolltax = 0
exact = 0
n24 = 0
nu06 = 0
age_head = 45
Expand All @@ -801,7 +803,7 @@ def test_CTCnew_2021(test_tuple, expected_value, skip_jit):
CTC_new_c, CTC_new_rt, CTC_new_c_under6_bonus,
CTC_new_ps, CTC_new_prt, CTC_new_for_all, CTC_include17,
CTC_new_refund_limited, CTC_new_refund_limit_payroll_rt,
CTC_new_refund_limited_all_payroll, payrolltax,
CTC_new_refund_limited_all_payroll, payrolltax, exact,
n24, nu06, age_head, age_spouse, nu18, c00100, MARS, ptax_oasdi,
c09200, ctc_new)
# output tuple is : (ctc_new)
Expand Down

0 comments on commit 3779d50

Please sign in to comment.