From 5e654620b791b3f1b218a40ec1b699a492f41ae5 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 13 Sep 2019 19:49:13 +0200 Subject: [PATCH] Use available indicators in tests where possible --- tests/optimize/test_backtesting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/optimize/test_backtesting.py b/tests/optimize/test_backtesting.py index 770f6c4ba..99fb30cbd 100644 --- a/tests/optimize/test_backtesting.py +++ b/tests/optimize/test_backtesting.py @@ -603,7 +603,7 @@ def test_processed(default_conf, mocker, testdatadir) -> None: cols = dataframe.columns # assert the dataframe got some of the indicator columns for col in ['close', 'high', 'low', 'open', 'date', - 'ema50', 'ao', 'macd', 'plus_dm']: + 'ema10', 'rsi', 'fastd', 'plus_di']: assert col in cols