Skip to content

Commit 951e8c3

Browse files
committed
Fix test
1 parent 1de31b4 commit 951e8c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4611,13 +4611,13 @@ def test_hist_vectorized_params():
46114611
np.random.seed(19680801)
46124612
x = [np.random.randn(n) for n in [2000, 5000, 10000]]
46134613

4614-
ax0.hist(x, bins=10, histtype="barstacked", edgecolor=["blue", "black", "red"],
4614+
ax0.hist(x, bins=10, histtype="barstacked", edgecolor=["red", "black", "blue"],
46154615
linewidth=[1, 1.2, 1.5], hatch=["/", "\\", "."])
46164616
ax1.hist(x, bins=10, histtype="barstacked", linewidth=[1, 1.2, 1.5],
46174617
hatch=["/", "\\", "."], linestyle=["-", "--", ":"])
4618-
ax2.hist(x, bins=10, histtype="barstacked", edgecolor=["blue", "black", "red"],
4618+
ax2.hist(x, bins=10, histtype="barstacked", edgecolor=["red", "black", "blue"],
46194619
hatch=["/", "\\", "."], linestyle=["-", "--", ":"])
4620-
ax3.hist(x, bins=10, histtype="barstacked", edgecolor=["blue", "black", "red"],
4620+
ax3.hist(x, bins=10, histtype="barstacked", edgecolor=["red", "black", "blue"],
46214621
linewidth=[1, 1.2, 1.5], linestyle=["-", "--", ":"])
46224622

46234623

0 commit comments

Comments
 (0)