From 5d22d541f21e67045ca2c125f88d5e1f9652b653 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 31 Jul 2019 06:58:26 +0200 Subject: [PATCH] Add forgotten directory --- freqtrade/tests/test_plotting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/tests/test_plotting.py b/freqtrade/tests/test_plotting.py index c80d0e780..83a561110 100644 --- a/freqtrade/tests/test_plotting.py +++ b/freqtrade/tests/test_plotting.py @@ -211,7 +211,7 @@ def test_generate_plot_file(mocker, caplog): fig = generage_empty_figure() plot_mock = mocker.patch("freqtrade.plot.plotting.plot", MagicMock()) store_plot_file(fig, filename="freqtrade-plot-UNITTEST_BTC-5m.html", - folder=Path("user_data/plots")) + directory=Path("user_data/plots")) assert plot_mock.call_count == 1 assert plot_mock.call_args[0][0] == fig