Merge pull request #2787 from freqtrade/dry_run_optional

remove default value calls for dry_run
This commit is contained in:
hroff-1902
2020-01-20 23:08:17 +03:00
committed by GitHub
4 changed files with 7 additions and 8 deletions

View File

@@ -323,7 +323,7 @@ def test_load_dry_run(default_conf, mocker, config_value, expected, arglist) ->
configuration = Configuration(Arguments(arglist).get_parsed_arg())
validated_conf = configuration.load_config()
assert validated_conf.get('dry_run') is expected
assert validated_conf['dry_run'] is expected
def test_load_custom_strategy(default_conf, mocker) -> None: