Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6735c35 commit 164124cCopy full SHA for 164124c
lib/matplotlib/tests/test_agg.py
@@ -144,6 +144,17 @@ def test_marker_with_nan():
144
fig.savefig(buf, format='png')
145
146
147
+@cleanup
148
+def test_long_path():
149
+ buff = io.BytesIO()
150
+
151
+ fig, ax = plt.subplots()
152
+ with np.random.seed(0):
153
+ points = np.random.rand(70000)
154
+ ax.plot(points)
155
+ fig.savefig(buff, format='png')
156
157
158
if __name__ == "__main__":
159
import nose
160
nose.runmodule(argv=['-s', '--with-doctest'], exit=False)
0 commit comments