@@ -2236,7 +2236,7 @@ def test_bxp_patchartist():
2236
2236
def test_bxp_custompatchartist ():
2237
2237
_bxp_test_helper (bxp_kwargs = dict (
2238
2238
patch_artist = True ,
2239
- boxprops = dict (facecolor = 'yellow' , edgecolor = 'green' , linestyle = ':' )))
2239
+ boxprops = dict (facecolor = 'yellow' , edgecolor = 'green' , ls = ':' )))
2240
2240
2241
2241
2242
2242
@image_comparison (baseline_images = ['bxp_customoutlier' ],
@@ -2245,7 +2245,7 @@ def test_bxp_custompatchartist():
2245
2245
style = 'default' )
2246
2246
def test_bxp_customoutlier ():
2247
2247
_bxp_test_helper (bxp_kwargs = dict (
2248
- flierprops = dict (linestyle = 'none' , marker = 'd' , markerfacecolor = 'g' )))
2248
+ flierprops = dict (linestyle = 'none' , marker = 'd' , mfc = 'g' )))
2249
2249
2250
2250
2251
2251
@image_comparison (baseline_images = ['bxp_withmean_custompoint' ],
@@ -2255,7 +2255,7 @@ def test_bxp_customoutlier():
2255
2255
def test_bxp_showcustommean ():
2256
2256
_bxp_test_helper (bxp_kwargs = dict (
2257
2257
showmeans = True ,
2258
- meanprops = dict (linestyle = 'none' , marker = 'd' , markerfacecolor = 'green' ),
2258
+ meanprops = dict (linestyle = 'none' , marker = 'd' , mfc = 'green' ),
2259
2259
))
2260
2260
2261
2261
@@ -2265,7 +2265,7 @@ def test_bxp_showcustommean():
2265
2265
style = 'default' )
2266
2266
def test_bxp_custombox ():
2267
2267
_bxp_test_helper (bxp_kwargs = dict (
2268
- boxprops = dict (linestyle = '--' , color = 'b' , linewidth = 3 )))
2268
+ boxprops = dict (linestyle = '--' , color = 'b' , lw = 3 )))
2269
2269
2270
2270
2271
2271
@image_comparison (baseline_images = ['bxp_custommedian' ],
@@ -2274,7 +2274,7 @@ def test_bxp_custombox():
2274
2274
style = 'default' )
2275
2275
def test_bxp_custommedian ():
2276
2276
_bxp_test_helper (bxp_kwargs = dict (
2277
- medianprops = dict (linestyle = '--' , color = 'b' , linewidth = 3 )))
2277
+ medianprops = dict (linestyle = '--' , color = 'b' , lw = 3 )))
2278
2278
2279
2279
2280
2280
@image_comparison (baseline_images = ['bxp_customcap' ],
@@ -2283,7 +2283,7 @@ def test_bxp_custommedian():
2283
2283
style = 'default' )
2284
2284
def test_bxp_customcap ():
2285
2285
_bxp_test_helper (bxp_kwargs = dict (
2286
- capprops = dict (linestyle = '--' , color = 'g' , linewidth = 3 )))
2286
+ capprops = dict (linestyle = '--' , color = 'g' , lw = 3 )))
2287
2287
2288
2288
2289
2289
@image_comparison (baseline_images = ['bxp_customwhisker' ],
@@ -2292,7 +2292,7 @@ def test_bxp_customcap():
2292
2292
style = 'default' )
2293
2293
def test_bxp_customwhisker ():
2294
2294
_bxp_test_helper (bxp_kwargs = dict (
2295
- whiskerprops = dict (linestyle = '-' , color = 'm' , linewidth = 3 )))
2295
+ whiskerprops = dict (linestyle = '-' , color = 'm' , lw = 3 )))
2296
2296
2297
2297
2298
2298
@image_comparison (baseline_images = ['bxp_withnotch' ],
0 commit comments