Skip to content

Commit

Permalink
Add another test to test_growfactors.py
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholmer committed Jun 5, 2024
1 parent 5e40363 commit afb7df1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions taxcalc/tests/test_growfactors.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ def test_improper_usage(bad_gf_file):
"""
with pytest.raises(ValueError):
gfo = GrowFactors(dict())
with pytest.raises(ValueError):
gfo = GrowFactors('non_existent_file.csv')
with pytest.raises(ValueError):
gfo = GrowFactors(bad_gf_file.name)
gfo = GrowFactors()
Expand Down

0 comments on commit afb7df1

Please sign in to comment.