Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f6ba2b7

Browse files
committed
Add small stackplot smoke test
1 parent 7809b91 commit f6ba2b7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/matplotlib/tests/test_pyplot.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ def test_pyplot_box():
3131
assert not ax.get_frame_on()
3232
plt.box()
3333
assert ax.get_frame_on()
34+
35+
36+
def test_stackplot_smoke():
37+
# Small smoke test for stackplot (see #12405)
38+
plt.stackplot([1, 2, 3], [1, 2, 3])

0 commit comments

Comments
 (0)