def test_plot_controller(self): """plot_utils.plot_controller() doesn't bomb""" run1 = trappy.Run(name="first") run2 = trappy.Run(name="second") runs = [run1, run2] plot_utils.plot_controller(runs, height=5) matplotlib.pyplot.close('all')
def test_plot_controller(self): """plot_utils.plot_controller() doesn't bomb""" trace1 = trappy.FTrace(name="first") trace2 = trappy.FTrace(name="second") traces = [trace1, trace2] plot_utils.plot_controller(traces, height=5) matplotlib.pyplot.close('all')