Skip to content

Commit

Permalink
BUG: Fix conflicting kwarg in test
Browse files Browse the repository at this point in the history
linewidth/linewidths was conflicting. Not sure why this hasn't shown up
until now.
  • Loading branch information
dopplershift committed Apr 27, 2024
1 parent cee6a8c commit 81fb74e
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 81fb74e

Please sign in to comment.