Fix WA WFTC phase-out to use federal phase-out income (max of earned income, AGI)#8681
Open
DTrim99 wants to merge 1 commit into
Open
Fix WA WFTC phase-out to use federal phase-out income (max of earned income, AGI)#8681DTrim99 wants to merge 1 commit into
DTrim99 wants to merge 1 commit into
Conversation
The Washington Working Families Tax Credit phase-out reduction was computed on earned income alone, but RCW 82.08.0206(3)(b) bases it on the federal phase-out income (the greater of earned income or AGI), the same measure already used for the maximum-qualifying-income ceiling and eligibility test. Filers with AGI above earned income in the phase-out band (e.g. unemployment, taxable pension, taxable Social Security) were overpaid. Surfaced via PolicyEngine/policyengine-taxsim#986. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8681 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 5 1 -4
Lines 71 54 -17
=========================================
- Hits 71 54 -17
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #8680.
What
The Washington Working Families Tax Credit (WFTC) phase-out reduction was computed on earned income alone, but RCW 82.08.0206(3)(b) bases the reduction on the federal phase-out income — the federal EITC measure, i.e. the greater of earned income or AGI. The credit's eligibility ceiling and
wa_working_families_tax_credit_maximum_qualifying_incomealready usemax(earned income, AGI); this aligns the taper with them.Impact
Filers whose AGI exceeds earned income and lands in the phase-out band (unearned income — unemployment compensation, taxable pension, taxable Social Security — near the top of the eligibility range) were overpaid. Filers with earnings ≈ AGI, or income below the band, are unchanged.
Example (MFJ, 3 children, 2025)
Tests
Added Case 6b to
wa_working_families_tax_credit.yamlcovering the $40k-wages + $16k-UI household (expected $866.57). Full WA WFTC suite (24 cases) passes.Context
Surfaced by Daniel Feenberg (NBER TAXSIM) in PolicyEngine/policyengine-taxsim#986. The original household in that issue (earnings ≈ AGI, below the band) is not affected.
🤖 Generated with Claude Code