Skip to content

Commit

Permalink
fixed another small bug in the eitc
Browse files Browse the repository at this point in the history
  • Loading branch information
austinperryfrancis committed Nov 22, 2023
1 parent bb025d2 commit c4beb81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ def formula(tax_unit, period, parameters):
line_14 = fed_eitc
line_15 = line_14 * eitc_rate
line_16 = where(line_15 > line_13, line_15, line_13)
line_17 = where(net_tax > line_16, line_16, 0)
line_17 = where(net_tax > line_16, line_16, net_tax)

Check warning on line 41 in fiscalsim_us/variables/gov/states/va/tax/income/va_tax_credit_for_low_income_individuals.py

View check run for this annotation

Codecov / codecov/patch

fiscalsim_us/variables/gov/states/va/tax/income/va_tax_credit_for_low_income_individuals.py#L41

Added line #L41 was not covered by tests

return where(total_agi < threshold, line_17, 0)

0 comments on commit c4beb81

Please sign in to comment.