remove unnecessary function

This commit is contained in:
Matthias 2018-08-19 09:17:17 +02:00
parent d722c12109
commit 088c54b88c

View File

@ -22,10 +22,6 @@ def get_mock_coro(return_value):
return Mock(wraps=mock_coro)
async def async_load_markets():
return {}
def ccxt_exceptionhandlers(mocker, default_conf, api_mock, fun, mock_ccxt_fun, **kwargs):
with pytest.raises(TemporaryError):
api_mock.__dict__[mock_ccxt_fun] = MagicMock(side_effect=ccxt.NetworkError)