Skip to content

Commit

Permalink
correct wrongly named test
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Aug 24, 2019
1 parent 240936e commit 3121206
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions freqtrade/tests/test_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from freqtrade.configuration import TimeRange
from freqtrade.data import history
from freqtrade.data.btanalysis import create_cum_profit, load_backtest_data
from freqtrade.plot.plot_utils import start_plot_dataframe
from freqtrade.plot.plot_utils import start_plot_dataframe, start_plot_profit
from freqtrade.plot.plotting import (add_indicators, add_profit,
analyse_and_plot_pairs,
generate_candlestick_graph,
Expand Down Expand Up @@ -320,7 +320,7 @@ def test_analyse_and_plot_pairs(default_conf, mocker, caplog):
assert log_has("End of plotting process. 2 plots generated", caplog)


def start_plot_profit(mocker):
def test_start_plot_profit(mocker):
aup = mocker.patch("freqtrade.plot.plotting.plot_profit", MagicMock())
args = [
"--config", "config.json.example",
Expand Down

0 comments on commit 3121206

Please sign in to comment.