remove more useless docstrings from tests

This commit is contained in:
Janne Sinivirta
2018-07-30 11:37:29 +03:00
parent 336cd524a3
commit e242842805
8 changed files with 1 additions and 270 deletions

View File

@@ -15,8 +15,6 @@ from freqtrade.tests.conftest import get_patched_exchange, log_has
def ccxt_exceptionhandlers(mocker, default_conf, api_mock, fun, mock_ccxt_fun, **kwargs):
"""Function to test ccxt exception handling """
with pytest.raises(TemporaryError):
api_mock.__dict__[mock_ccxt_fun] = MagicMock(side_effect=ccxt.NetworkError)
exchange = get_patched_exchange(mocker, default_conf, api_mock)