mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Fix tests
This commit is contained in:
parent
47748bc6f7
commit
06d230279c
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue
Block a user