Commit ec779c70 authored by Michael Droettboom's avatar Michael Droettboom

Fix content length

parent 0fbaa771
...@@ -27,4 +27,4 @@ def test_pdf(selenium): ...@@ -27,4 +27,4 @@ def test_pdf(selenium):
selenium.run("fd = io.BytesIO()") selenium.run("fd = io.BytesIO()")
selenium.run("plt.savefig(fd, format='pdf')") selenium.run("plt.savefig(fd, format='pdf')")
content = selenium.run("fd.getvalue()") content = selenium.run("fd.getvalue()")
assert len(content) == 15752 assert len(content) == 5559
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment