Skip to content

Commit

Permalink
String fix on plural singular scatter
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed May 24, 2023
1 parent db60c1d commit 63eae54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/tests/test_axes.py
Expand Up @@ -2719,7 +2719,7 @@ def test_scatter_singular_plural_arguments(self):
edgecolor="#ffffff")

with pytest.raises(TypeError,
match="Got both 'facecolor' and 'facecolors',\
match="Got both 'facecolors' and 'facecolor',\
which are aliases of one another"):
plt.scatter([1, 2, 3], [1, 2, 3],
facecolors=["#ffffff", "#000000", "#f0f0f0"],
Expand Down

0 comments on commit 63eae54

Please sign in to comment.