8000 Fix scatter color masking test · matplotlib/matplotlib@e5469f5 · GitHub
[go: up one dir, main page]

Skip to content

Commit e5469f5

Browse files
committed
Fix scatter color masking test
1 parent 7cabe13 commit e5469f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4849,7 +4849,7 @@ def test_scatter_color_masking():
48494849
y = np.array([1, np.nan, 3])
48504850
colors = np.array(['k', 'w', 'k'])
48514851
linewidths = np.array([1, 2, 3])
4852-
s = plt.scatter(x, y, color=colors)
4852+
s = plt.scatter(x, y, color=colors, linewidths=linewidths)
48534853

48544854
facecolors = s.get_facecolors()
48554855
linecolors = s.get_edgecolors()

0 commit comments

Comments
 (0)
0