Remove flucky test assert

This commit is contained in:
Matthias 2020-03-03 09:36:04 +01:00
parent d9e83cc4e2
commit 720ed0eddd
1 changed files with 0 additions and 4 deletions

View File

@ -448,9 +448,6 @@ def test_create_datadir_failed(caplog):
def test_create_datadir(caplog, mocker):
# Capture caplog length here trying to avoid random test failure
len_caplog_before = len(caplog.record_tuples)
cud = mocker.patch("freqtrade.commands.deploy_commands.create_userdata_dir", MagicMock())
csf = mocker.patch("freqtrade.commands.deploy_commands.copy_sample_files", MagicMock())
args = [
@ -462,7 +459,6 @@ def test_create_datadir(caplog, mocker):
assert cud.call_count == 1
assert csf.call_count == 1
assert len(caplog.record_tuples) == len_caplog_before
def test_start_new_strategy(mocker, caplog):