From 63eae54e24eb5ba7c28c5e90c7a10442cb6ff8d4 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 24 May 2023 00:29:07 -0300 Subject: [PATCH] String fix on plural singular scatter --- lib/matplotlib/tests/test_axes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/tests/test_axes.py b/lib/matplotlib/tests/test_axes.py index 281115e26f33..1760d4046381 100644 --- a/lib/matplotlib/tests/test_axes.py +++ b/lib/matplotlib/tests/test_axes.py @@ -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"],