mirror of https://github.com/pyodide/pyodide.git
Fix content length
This commit is contained in:
parent
0fbaa77192
commit
ec779c706d
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue