8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1cb5d2 commit 84bdc71Copy full SHA for 84bdc71
lib/matplotlib/tests/test_axes.py
@@ -2121,8 +2121,8 @@ def _bxp_test_helper(
2121
# Work around baseline images generate back when bxp did not respect the
2122
# boxplot.boxprops.linewidth rcParam when patch_artist is False.
2123
if not bxp_kwargs.get('patch_artist', False):
2124
- (bxp_kwargs.setdefault('boxprops', {})
2125
- .setdefault('linewidth', matplotlib.rcParams["lines.linewidth"]))
+ matplotlib.rcParams['boxplot.boxprops.linewidth'] = \
+ matplotlib.rcParams['lines.linewidth']
2126
ax.bxp(transform_stats(logstats), **bxp_kwargs)
2127
2128
0 commit comments