##// END OF EJS Templates
Fix pylabtools test for Python 3
Thomas Kluyver -
Show More
@@ -51,7 +51,7 def test_figure_to_svg():
51 ax.plot([1,2,3])
51 ax.plot([1,2,3])
52 plt.draw()
52 plt.draw()
53 svg = pt.print_figure(fig, 'svg')[:100].lower()
53 svg = pt.print_figure(fig, 'svg')[:100].lower()
54 nt.assert_in('doctype svg', svg)
54 nt.assert_in(b'doctype svg', svg)
55
55
56
56
57 def test_import_pylab():
57 def test_import_pylab():
General Comments 0
You need to be logged in to leave comments. Login now