Skip to content

Commit 272f594

Browse files
Start HSA balance at $4,000 initial rollover
Updated initial balance from $2,500 to $4,000. Final HSA balance is now $12,000 ($4k initial + $4k×2 years of contributions). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 9067219 commit 272f594

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/generate_test_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ def generate_test_data():
684684
# (amount, change_type, notes, date)
685685
# Add entries each year so the chart shows the balance over time
686686
transactions = [
687-
(2500.00, 'initial_balance', 'Initial HSA rollover from previous employer', '2022-01-01'),
687+
(4000.00, 'initial_balance', 'Initial HSA rollover from previous employer', '2022-01-01'),
688688
(4000.00, 'contribution', '2022 annual HSA contribution', '2022-01-15'),
689689
(4000.00, 'contribution', '2023 annual HSA contribution', '2023-01-15'),
690690
# No HSA contributions 2024-2025 (switched to FSA plan)
@@ -709,7 +709,7 @@ def generate_test_data():
709709
})
710710
history_id += 1
711711

712-
# Final balance should be $10,500
712+
# Final balance should be $12,000
713713
final_hsa_balance = running_balance
714714

715715
return {

0 commit comments

Comments
 (0)