Skip to content

Commit

Permalink
fixing market test -- extra argument for price dividend ratio function
Browse files Browse the repository at this point in the history
  • Loading branch information
sbenthall committed Mar 16, 2023
1 parent 6cb996c commit 55d25d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sharkfin/tests/test_markets.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ class TestMarketErrors(unittest.TestCase):

def test_stopped_market(self):

dividend_growth_rate = 1.000628
dividend_std = 0.011988

pdr = price_dividend_ratio_random_walk(0.95, 5, dividend_std)
pdr = price_dividend_ratio_random_walk(0.95, 5, dividend_growth_rate, dividend_std)

market = MockMarket(
dividend_growth_rate = 1.000628,
Expand Down

0 comments on commit 55d25d2

Please sign in to comment.