From d648040cbb05fb4077e1ba53c01cc5e013754927 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 15 Sep 2024 18:08:17 -0400 Subject: [PATCH] update test value for new taxcalc --- ccc/tests/test_calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccc/tests/test_calculator.py b/ccc/tests/test_calculator.py index f893c755..67904b47 100644 --- a/ccc/tests/test_calculator.py +++ b/ccc/tests/test_calculator.py @@ -334,7 +334,7 @@ def test_p_param_return_value(): dp = DepreciationParams() calc1 = Calculator(p, dp, assets) obj = calc1.p_param("tau_int") - assert np.allclose(obj, np.array([0.31391843])) + assert np.allclose(obj, np.array([0.31334561])) def test_p_param_set_value():