don't print in tests

This commit is contained in:
Matthias
2019-09-08 19:47:16 +02:00
parent c5726e88e8
commit 3430850421
8 changed files with 0 additions and 16 deletions

View File

@@ -214,9 +214,6 @@ def test_start(mocker, default_conf, caplog) -> None:
args = get_args(args)
start_hyperopt(args)
import pprint
pprint.pprint(caplog.record_tuples)
assert log_has('Starting freqtrade in Hyperopt mode', caplog)
assert start_mock.call_count == 1
@@ -239,9 +236,6 @@ def test_start_no_data(mocker, default_conf, caplog) -> None:
args = get_args(args)
start_hyperopt(args)
import pprint
pprint.pprint(caplog.record_tuples)
assert log_has('No data found. Terminating.', caplog)