From a9ec0f7287617a8db920ca1ea7cfc1409c93b6ad Mon Sep 17 00:00:00 2001 From: GaelleChapuis Date: Thu, 5 Dec 2024 00:33:45 +0100 Subject: [PATCH] plotting test passing --- src/iblphotometry_tests/test_plots.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/iblphotometry_tests/test_plots.py b/src/iblphotometry_tests/test_plots.py index 6c08595..632e244 100644 --- a/src/iblphotometry_tests/test_plots.py +++ b/src/iblphotometry_tests/test_plots.py @@ -79,7 +79,8 @@ def test_class_plotsignal(self): processed_signal = df_nph['signal_processed'].values times = df_nph['times'].values - plotobj = plots.PlotSignal(raw_signal, times, raw_isosbestic, processed_signal) + plotobj = plots.PlotSignal() + plotobj.set_data(raw_signal, times, raw_isosbestic, processed_signal) plotobj.raw_processed_figure() plt.close('all')