diff --git a/lisa/tests/staging/utilclamp.py b/lisa/tests/staging/utilclamp.py index 2c6d4cf9782ba63958148392aeb2c5dfd1645505..1b9d79a1469ff023162bddc0af69fcfe7d7a1de0 100644 --- a/lisa/tests/staging/utilclamp.py +++ b/lisa/tests/staging/utilclamp.py @@ -243,7 +243,7 @@ class UtilClamp(RTATestBundle, TestBundle): ana.rta.plot_phases(wlgen_profile=self.rtapp_profile) * hv.Overlay( [ - hv.HLine(failure).options( + hv.VLine(failure).options( alpha=0.5, color='red' ) @@ -254,7 +254,7 @@ class UtilClamp(RTATestBundle, TestBundle): ] if signal is not None: figs.append( - plot_signal(signal) + plot_signal(signal).opts(responsive=True, height=400) ) fig = hv.Layout(figs).cols(1)