Skip to content

Commit

Permalink
Fix one-off error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
hdoupe committed Nov 11, 2019
1 parent 1c64f4a commit c48a4b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taxcalc/tests/test_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1027,6 +1027,6 @@ def test_cpi_offset_affect_on_prior_years():

# Inflation rate in 2022 was updated.
np.testing.assert_allclose(
p1_rates[2022 - start_year + 1],
p2_rates[2022 - start_year + 1] - (-0.005)
p1_rates[2022 - start_year],
p2_rates[2022 - start_year] - (-0.005)
)

0 comments on commit c48a4b0

Please sign in to comment.