Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5093491

Browse filesBrowse files
rootroot
authored andcommitted
Fixed match string on test_scatter_singular_plural_arguments
1 parent dc3ebb6 commit 5093491
Copy full SHA for 5093491

File tree

Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed

‎lib/matplotlib/tests/test_axes.py

Copy file name to clipboardExpand all lines: lib/matplotlib/tests/test_axes.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2708,19 +2708,19 @@ def test_scatter_singular_plural_arguments(self):
27082708

27092709
with pytest.raises(TypeError,
27102710
match="Got both 'linewidth' and 'linewidths',\
2711-
which are aliases of one another"):
2711+
which are aliases of one another"):
27122712
plt.scatter([1, 2, 3], [1, 2, 3], linewidths=[0.5, 0.4, 0.3], linewidth=0.2)
27132713

27142714
with pytest.raises(TypeError,
27152715
match="Got both 'edgecolor' and 'edgecolors',\
2716-
which are aliases of one another"):
2716+
which are aliases of one another"):
27172717
plt.scatter([1, 2, 3], [1, 2, 3],
27182718
edgecolors=["#ffffff", "#000000", "#f0f0f0"],
27192719
edgecolor="#ffffff")
27202720

27212721
with pytest.raises(TypeError,
27222722
match="Got both 'facecolor' and 'facecolors',\
2723-
which are aliases of one another"):
2723+
which are aliases of one another"):
27242724
plt.scatter([1, 2, 3], [1, 2, 3],
27252725
facecolors=["#ffffff", "#000000", "#f0f0f0"],
27262726
facecolor="#ffffff")

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.