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')