Include plt.show() in test

This commit is contained in:
Michael Droettboom 2019-02-21 18:17:24 -05:00
parent 68de9439cd
commit 45d1449209
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ def test_matplotlib(selenium):
selenium.run("from matplotlib import pyplot as plt")
selenium.run("plt.figure()")
selenium.run("x = plt.plot([1,2,3])")
selenium.run("plt.show()")
def test_svg(selenium):