Flake8 in tests ...

This commit is contained in:
Matthias
2018-08-09 20:17:55 +02:00
parent b008649d79
commit 56768f1a61
2 changed files with 4 additions and 3 deletions

View File

@@ -174,12 +174,13 @@ def test_strategy_override_ta_on_candle(caplog):
}
resolver = StrategyResolver(config)
assert resolver.strategy.ta_on_candle == True
assert resolver.strategy.ta_on_candle
assert ('freqtrade.strategy.resolver',
logging.INFO,
"Override ta_on_candle 'ta_on_candle' with value in config file: True."
) in caplog.record_tuples
def test_deprecate_populate_indicators(result):
default_location = path.join(path.dirname(path.realpath(__file__)))
resolver = StrategyResolver({'strategy': 'TestStrategyLegacy',