Rename get_positions to fetch_positions to align with ccxt naming

This commit is contained in:
Matthias
2022-02-23 19:19:42 +01:00
parent 62c42a73e2
commit 9901decf0d
4 changed files with 4 additions and 4 deletions

View File

@@ -318,7 +318,7 @@ def test_sync_wallet_futures_live(mocker, default_conf):
"total": 1000
},
}),
get_positions=MagicMock(return_value=mock_result)
fetch_positions=MagicMock(return_value=mock_result)
)
freqtrade = get_patched_freqtradebot(mocker, default_conf)