Fix wrong exception message

This commit is contained in:
Matthias
2019-08-24 09:08:08 +02:00
parent 70ebd09de4
commit a8842f38ca
2 changed files with 2 additions and 2 deletions

View File

@@ -668,7 +668,7 @@ def test_validate_tsl(default_conf):
default_conf['trailing_stop_positive'] = 0.015
with pytest.raises(OperationalException,
match=r'The config trailing_stop_positive_offset needs '
'to be greater than trailing_stop_positive_offset in your config.'):
'to be greater than trailing_stop_positive in your config.'):
validate_config_consistency(default_conf)
default_conf['trailing_stop_positive'] = 0.01