mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 16:43:06 +00:00
ruff format: Update test strategies
This commit is contained in:
@@ -5,15 +5,16 @@ from freqtrade.util import render_template, render_template_with_fallback
|
||||
|
||||
def test_render_template_fallback():
|
||||
from jinja2.exceptions import TemplateNotFound
|
||||
|
||||
with pytest.raises(TemplateNotFound):
|
||||
val = render_template(
|
||||
templatefile='subtemplates/indicators_does-not-exist.j2',
|
||||
templatefile="subtemplates/indicators_does-not-exist.j2",
|
||||
arguments={},
|
||||
)
|
||||
|
||||
val = render_template_with_fallback(
|
||||
templatefile='strategy_subtemplates/indicators_does-not-exist.j2',
|
||||
templatefallbackfile='strategy_subtemplates/indicators_minimal.j2',
|
||||
templatefile="strategy_subtemplates/indicators_does-not-exist.j2",
|
||||
templatefallbackfile="strategy_subtemplates/indicators_minimal.j2",
|
||||
)
|
||||
assert isinstance(val, str)
|
||||
assert 'if self.dp' in val
|
||||
assert "if self.dp" in val
|
||||
|
||||
Reference in New Issue
Block a user