Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
fixed:
- Add the Connecticut EITC to the list of refundable credits.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
description: Connecticut provides the following refundable tax credits.
metadata:
unit: list
period: year
label: Connecticut refundable credits

values:
2021-01-01:
- ct_eitc
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,32 @@
state_fips: 9 # CT
output: # expected results from patched TAXSIM35 2024-03-07 version
ct_income_tax: 404

- name: Tax unit with taxsimid 99900 in p21.its.csv and p21.ots.csv
absolute_error_margin: 0.01
period: 2021
input:
people:
person1:
age: 68
employment_income: 16_010
person2:
age: 11
person3:
age: 11
person4:
age: 16
tax_units:
tax_unit:
members: [person1, person2, person3, person4]
premium_tax_credit: 0 # not in TAXSIM35
spm_units:
spm_unit:
members: [person1, person2, person3, person4]
snap: 0 # not in TAXSIM35
households:
household:
members: [person1, person2, person3, person4]
state_fips: 9 # CT
output: # expected results from patched TAXSIM35 2024-03-17 version
ct_income_tax: -2_052.04
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ class ct_refundable_credits(Variable):
unit = USD
definition_period = YEAR
defined_for = StateCode.CT

adds = "gov.states.ct.tax.income.credits.refundable"