Fix tests

This commit is contained in:
Matthias Voppichler 2018-04-21 20:05:39 +02:00
parent 47748bc6f7
commit 06d230279c

View File

@ -234,7 +234,7 @@ def test_authorized_only_exception(default_conf, mocker, caplog) -> None:
)
def test_status(default_conf, update, mocker, ticker) -> None:
def test_status(default_conf, update, fee, mocker, ticker) -> None:
"""
Test _status() method
"""
@ -249,7 +249,8 @@ def test_status(default_conf, update, mocker, ticker) -> None:
'freqtrade.freqtradebot.exchange',
validate_pairs=MagicMock(),
get_ticker=ticker,
get_pair_detail_url=MagicMock()
get_pair_detail_url=MagicMock(),
get_fee=fee
)
msg_mock = MagicMock()
status_table = MagicMock()