From 5b485ad498701d8c6d61c75a18e5840c72ffcd12 Mon Sep 17 00:00:00 2001 From: alanlujan91 Date: Sat, 6 Apr 2024 18:40:30 -0400 Subject: [PATCH] changed default dicts, so have to change test params --- HARK/ConsumptionSaving/tests/test_ConsBequestModel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HARK/ConsumptionSaving/tests/test_ConsBequestModel.py b/HARK/ConsumptionSaving/tests/test_ConsBequestModel.py index 0c48afba3..958dcc43f 100644 --- a/HARK/ConsumptionSaving/tests/test_ConsBequestModel.py +++ b/HARK/ConsumptionSaving/tests/test_ConsBequestModel.py @@ -8,7 +8,7 @@ class testWarmGlowConsumerType(unittest.TestCase): def setUp(self): - self.agent = BequestWarmGlowConsumerType() + self.agent = BequestWarmGlowConsumerType(BeqFac=1.0) self.agent.vFuncBool = True self.agent.solve() @@ -33,7 +33,7 @@ def test_simulation(self): class testBequestWarmGlowPortfolioType(unittest.TestCase): def setUp(self): - self.agent = BequestWarmGlowPortfolioType() + self.agent = BequestWarmGlowPortfolioType(BeqFac=1.0, BeqFacTerm=1.0) self.agent.vFuncBool = True self.agent.solve()