diff --git a/artiq/test/test_wavesynth.py b/artiq/test/test_wavesynth.py index 1413a4a61..c8323ba5b 100644 --- a/artiq/test/test_wavesynth.py +++ b/artiq/test/test_wavesynth.py @@ -121,6 +121,7 @@ class TestSynthesizer(unittest.TestCase): @unittest.skip("manual/visual test") def test_plot(self): - import cairoplot + from matplotlib import pyplot as plt x, y = self.drive() - cairoplot.scatter_plot("plot.png", [x, y]) + plt.plot(x, y) + plt.show()