From afb7df143de6905bce7f891ba32de6f5ad34d82d Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Wed, 5 Jun 2024 16:28:07 -0400 Subject: [PATCH] Add another test to test_growfactors.py --- taxcalc/tests/test_growfactors.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/taxcalc/tests/test_growfactors.py b/taxcalc/tests/test_growfactors.py index 8c4771b8b..5e0e7d163 100644 --- a/taxcalc/tests/test_growfactors.py +++ b/taxcalc/tests/test_growfactors.py @@ -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()