Skip to content

Commit

Permalink
BUG: Fix kwarg in test
Browse files Browse the repository at this point in the history
This was causing a conflict between linewidth and linewidths that
matplotlib 3.9.0rc2 caught and errored out on.
  • Loading branch information
dopplershift committed Apr 26, 2024
1 parent dfdbf72 commit 05b9ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/plots/test_declarative.py
Original file line number Diff line number Diff line change
Expand Up @@ -2115,7 +2115,7 @@ def test_declarative_plot_geometry_lines(ccrs):
geo.stroke = 'green'
geo.labels = ['Irma', '+/- 0.25 deg latitude']
geo.label_facecolor = None
geo.mpl_args = {'linewidth': 1}
geo.mpl_args = {'linewidths': 1}

# Place plot in a panel and container
panel = MapPanel()
Expand Down

0 comments on commit 05b9ce0

Please sign in to comment.